Skip to content

Commit

Permalink
lib-sieve: enotify extension: Fixed instances where FALSE was returne…
Browse files Browse the repository at this point in the history
…d rather than NULL.
  • Loading branch information
stephanbosch committed Jun 23, 2016
1 parent aa4da96 commit 6b64c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-sieve/plugins/enotify/mailto/uri-mailto.c
Expand Up @@ -601,7 +601,7 @@ struct uri_mailto *uri_mailto_parse
p_array_init(&parser.uri->headers, pool, max_headers);

if ( !uri_mailto_parse_uri(&parser, uri_body) )
return FALSE;
return NULL;

if ( ehandler != NULL ) {
if ( array_count(&parser.uri->recipients) == 0 )
Expand Down

0 comments on commit 6b64c24

Please sign in to comment.