diff options
Diffstat (limited to 'src/bin/psql/copy.c')
-rw-r--r-- | src/bin/psql/copy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c index 424a429e1e2..c181682a132 100644 --- a/src/bin/psql/copy.c +++ b/src/bin/psql/copy.c @@ -389,8 +389,7 @@ do_copy(const char *args) pg_log_error("%s: %s", options->file, reason ? reason : ""); - if (reason) - free(reason); + free(reason); } success = false; } |