1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-29 16:21:20 +03:00

Plug memory leak

Introduced by b08dee24a557.  Noted by Coverity.
This commit is contained in:
Alvaro Herrera 2020-03-16 16:27:13 -03:00
parent 170679216d
commit c6b75b3f14
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE

View File

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