wmail: use continue instead of goto.
This commit is contained in:
parent
68baa67992
commit
2ae0c7cba4
|
@ -1091,7 +1091,7 @@ static void ParseMBoxFile( struct stat *fileStat )
|
|||
char *addr = buf + sizeof "From:";
|
||||
|
||||
if( SkipSender( addr ))
|
||||
goto NEXTMAIL;
|
||||
continue;
|
||||
|
||||
char *name;
|
||||
if(( name = ParseFromField( addr )) == NULL )
|
||||
|
@ -1112,8 +1112,6 @@ static void ParseMBoxFile( struct stat *fileStat )
|
|||
RemoveLastName();
|
||||
--numMails;
|
||||
}
|
||||
NEXTMAIL:
|
||||
;
|
||||
}
|
||||
|
||||
fclose( f );
|
||||
|
|
Loading…
Reference in a new issue