]> granicus.if.org Git - php/commitdiff
fix C89 compat
authorAnatol Belski <ab@php.net>
Sun, 19 Jan 2014 01:05:10 +0000 (02:05 +0100)
committerAnatol Belski <ab@php.net>
Sun, 19 Jan 2014 01:05:10 +0000 (02:05 +0100)
phpdbg_cmd.c

index 29424d00fe7fbee4dc31d2cc2bb031f735ef6114..c7008512436ae2cb8bff01ed66dba3719e40cc23 100644 (file)
@@ -459,6 +459,9 @@ PHPDBG_API phpdbg_input_t *phpdbg_read_input(char *buffered TSRMLS_DC) /* {{{ */
 {
        phpdbg_input_t *buffer = NULL;
        char *cmd = NULL;
+#ifndef HAVE_LIBREADLINE
+       char buf[PHPDBG_MAX_CMD];
+#endif
 
        if (!(PHPDBG_G(flags) & PHPDBG_IS_QUITTING)) {
                if ((PHPDBG_G(flags) & PHPDBG_IS_REMOTE) &&
@@ -475,7 +478,6 @@ disconnect:
                        }
 
 #ifndef HAVE_LIBREADLINE
-                       char buf[PHPDBG_MAX_CMD];
                        if (!(PHPDBG_G(flags) & PHPDBG_IS_REMOTE)) {
                                if (!phpdbg_write(phpdbg_get_prompt(TSRMLS_C))) {
                                        goto disconnect;