From: Felipe Pena Date: Sun, 24 Nov 2013 17:11:15 +0000 (-0200) Subject: - Missing return X-Git-Tag: php-5.6.0alpha1~110^2~87 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb134a40593b9b9556ff4db9c697bc3b6fc68806;p=php - Missing return --- diff --git a/phpdbg_set.c b/phpdbg_set.c index 41abec103a..2cbb616777 100644 --- a/phpdbg_set.c +++ b/phpdbg_set.c @@ -75,6 +75,7 @@ void phpdbg_set_prompt_color(const char *color TSRMLS_DC) /* {{{ */ if (memcmp(color, *p, strlen(*p)+1) == 0) { PHPDBG_G(prompt_color) = estrdup(*p); phpdbg_set_prompt(PHPDBG_G(prompt_raw), *(p+1) TSRMLS_CC); + return; } } while (++p && *(++p)); } /* }}} */