]> granicus.if.org Git - php/commitdiff
Minor Coverity tweaks
authorRasmus Lerdorf <rasmus@lerdorf.com>
Sun, 20 Oct 2013 15:55:48 +0000 (08:55 -0700)
committerRasmus Lerdorf <rasmus@lerdorf.com>
Sun, 20 Oct 2013 15:55:48 +0000 (08:55 -0700)
ext/ftp/ftp.c

index 58d3c2ec4d2844f37062801bd942c28512fc4416..4da8d602c90834cffde32d375c402b05c58d9a06 100644 (file)
@@ -1643,7 +1643,7 @@ ftp_genlist(ftpbuf_t *ftp, const char *cmd, const char *path TSRMLS_DC)
        if (ftp->resp == 226) {
                ftp->data = data_close(ftp, data);
                php_stream_close(tmpstream);
-               return ecalloc(1, sizeof(char**));
+               return ecalloc(1, sizeof(char*));
        }
 
        /* pull data buffer into tmpfile */
@@ -1671,11 +1671,11 @@ ftp_genlist(ftpbuf_t *ftp, const char *cmd, const char *path TSRMLS_DC)
                }
        }
 
-       ftp->data = data = data_close(ftp, data);
+       ftp->data = data_close(ftp, data);
 
        php_stream_rewind(tmpstream);
 
-       ret = safe_emalloc((lines + 1), sizeof(char**), size * sizeof(char*));
+       ret = safe_emalloc((lines + 1), sizeof(char*), size * sizeof(char*));
 
        entry = ret;
        text = (char*) (ret + lines + 1);