]> granicus.if.org Git - php/commitdiff
Add a comment indicating that this return statement will never be reached.
authorJon Parise <jon@php.net>
Sun, 27 Jan 2002 07:15:07 +0000 (07:15 +0000)
committerJon Parise <jon@php.net>
Sun, 27 Jan 2002 07:15:07 +0000 (07:15 +0000)
# Perhaps it should just be removed?

ext/standard/mail.c

index 412cceb41b7206eb7384780253789ad25c30be4d..75afd5a223e09f412a92c83d7e04cccb64e3860e 100644 (file)
@@ -173,7 +173,8 @@ PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char
                php_error(E_WARNING, "Could not execute mail delivery program");
                return 0;
        }
-       return 1;
+
+       return 1;       /* never reached */
 }
 /* }}} */