mirror of
https://github.com/php/php-src.git
synced 2026-04-25 00:48:25 +02:00
Add a note that this statement will never be reached.
This commit is contained in:
+2
-1
@@ -1562,7 +1562,8 @@ PHP_FUNCTION(xml_parser_get_option)
|
||||
RETURN_FALSE;
|
||||
break;
|
||||
}
|
||||
RETVAL_FALSE;
|
||||
|
||||
RETVAL_FALSE; /* never reached */
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
|
||||
+1
-1
@@ -126,7 +126,7 @@ int ap_php_getopt(int argc, char* const *argv, const char *optstr)
|
||||
return(*cp);
|
||||
}
|
||||
assert(0);
|
||||
return(0);
|
||||
return(0); /* never reached */
|
||||
}
|
||||
|
||||
#ifdef TESTGETOPT
|
||||
|
||||
+1
-1
@@ -126,7 +126,7 @@ int ap_php_getopt(int argc, char* const *argv, const char *optstr)
|
||||
return(*cp);
|
||||
}
|
||||
assert(0);
|
||||
return(0);
|
||||
return(0); /* never reached */
|
||||
}
|
||||
|
||||
#ifdef TESTGETOPT
|
||||
|
||||
Reference in New Issue
Block a user