Shut up, compiler!

This commit is contained in:
Bob Weinand 2013-11-23 20:50:25 +01:00
parent 603df4a48f
commit a5fb0ae10e

View File

@ -164,7 +164,7 @@ PHPDBG_API phpdbg_input_t **phpdbg_read_argv(char *buffer, int *argc TSRMLS_DC)
continue;
case IN_STRING:
if ((c == '"')) {
if (c == '"') {
if (buffer[(p - buffer)-1] == '\\') {
b[l-1]=c;
continue;
@ -195,6 +195,9 @@ PHPDBG_API phpdbg_input_t **phpdbg_read_argv(char *buffer, int *argc TSRMLS_DC)
"Malformed command line (unclosed quote) @ %d: %s!",
(p - buffer)-1, &buffer[(p - buffer)-1]);
break;
case IN_BETWEEN:
break;
}
if ((*argc) == 0) {