1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-14 08:21:07 +03:00

Plug memory leak

Introduced by b08dee24a5.  Noted by Coverity.
This commit is contained in:
Alvaro Herrera
2020-03-16 16:27:13 -03:00
parent b83da9e6ee
commit 7984c7e9fc

View File

@ -3491,6 +3491,7 @@ append_depends_on_extension(Archive *fout,
}
PQclear(res);
destroyPQExpBuffer(query);
pg_free(nm);
}
}