]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix resource leak pointed out by Coverity.
authorTatsuo Ishii <ishii@postgresql.org>
Tue, 30 Dec 2014 11:19:50 +0000 (20:19 +0900)
committerTatsuo Ishii <ishii@postgresql.org>
Tue, 30 Dec 2014 11:20:56 +0000 (20:20 +0900)
contrib/pgbench/pgbench.c

index 56afd44d786c50483d99f865c0d87665eedfff2e..dbafd60990c4b03b52439fe2c6cc405bdaa5a7a4 100644 (file)
@@ -1745,6 +1745,7 @@ parseQuery(Command *cmd, const char *raw_sql)
                if (cmd->argc >= MAX_ARGS)
                {
                        fprintf(stderr, "statement has too many arguments (maximum is %d): %s\n", MAX_ARGS - 1, raw_sql);
+                       pg_free(name);
                        return false;
                }
 
@@ -1942,6 +1943,7 @@ process_file(char *filename)
        else if ((fd = fopen(filename, "r")) == NULL)
        {
                fprintf(stderr, "%s: %s\n", filename, strerror(errno));
+               pg_free(my_commands);
                return false;
        }