From: Jakub Zelenka Date: Mon, 4 Jan 2016 16:52:52 +0000 (+0000) Subject: Fix small CS label issue in openssl.c X-Git-Tag: php-7.0.3RC1~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ea63cb2a8512dbd1f6d7d8b171a626f5c10b2c6;p=php Fix small CS label issue in openssl.c --- diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 463719e3e5..a8ecbb2327 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -2387,7 +2387,7 @@ static STACK_OF(X509) * php_array_to_X509_sk(zval * zcerts) /* {{{ */ sk_X509_push(sk, cert); } - clean_exit: +clean_exit: return sk; } /* }}} */