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:";
|
char *addr = buf + sizeof "From:";
|
||||||
|
|
||||||
if( SkipSender( addr ))
|
if( SkipSender( addr ))
|
||||||
goto NEXTMAIL;
|
continue;
|
||||||
|
|
||||||
char *name;
|
char *name;
|
||||||
if(( name = ParseFromField( addr )) == NULL )
|
if(( name = ParseFromField( addr )) == NULL )
|
||||||
|
@ -1112,8 +1112,6 @@ static void ParseMBoxFile( struct stat *fileStat )
|
||||||
RemoveLastName();
|
RemoveLastName();
|
||||||
--numMails;
|
--numMails;
|
||||||
}
|
}
|
||||||
NEXTMAIL:
|
|
||||||
;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fclose( f );
|
fclose( f );
|
||||||
|
|
Loading…
Reference in a new issue