We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59f71a0 commit 4a0a5f2Copy full SHA for 4a0a5f2
contrib/vacuumlo/vacuumlo.c
@@ -240,6 +240,12 @@ vacuumlo(const char *database, const struct _param * param)
240
fprintf(stderr, "Out of memory\n");
241
PQclear(res);
242
PQfinish(conn);
243
+ if (schema != NULL)
244
+ PQfreemem(schema);
245
246
+ PQfreemem(table);
247
248
+ PQfreemem(field);
249
return -1;
250
}
251
@@ -256,6 +262,9 @@ vacuumlo(const char *database, const struct _param * param)
256
262
PQclear(res2);
257
263
258
264
265
266
267
259
268
260
269
261
270
0 commit comments