pajoye                                   Mon, 21 Feb 2011 10:09:50 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=308532

Log:
- fix test 025

Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/openssl/openssl.c

Modified: php/php-src/branches/PHP_5_3/ext/openssl/openssl.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/openssl/openssl.c  2011-02-21 10:07:31 UTC 
(rev 308531)
+++ php/php-src/branches/PHP_5_3/ext/openssl/openssl.c  2011-02-21 10:09:50 UTC 
(rev 308532)
@@ -3543,14 +3543,13 @@
        char * outfilename;     int outfilename_len;
        char * extracertsfilename = NULL; int extracertsfilename_len;

-       RETVAL_FALSE;
-
        if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ssZZa!|ls",
                                &infilename, &infilename_len, &outfilename, 
&outfilename_len,
                                &zcert, &zprivkey, &zheaders, &flags, 
&extracertsfilename,
                                &extracertsfilename_len) == FAILURE) {
                return;
        }
+       RETVAL_FALSE;

        if (strlen(infilename) != infilename_len) {
                return;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to