From: Bruce Momjian Date: Thu, 18 Jul 2002 04:46:24 +0000 (+0000) Subject: The attached patch fixes a tiny memory leak in psql, when using X-Git-Tag: REL7_3~1171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c26bc5364425041ff3e1a03a2f3ae100f303878;p=postgresql The attached patch fixes a tiny memory leak in psql, when using the 'expanded' output mode (\x). Neil Conway --- diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index 92368f9c2d..a8a0b9af7b 100644 --- a/src/bin/psql/print.c +++ b/src/bin/psql/print.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.27 2002/07/15 01:56:25 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/print.c,v 1.28 2002/07/18 04:46:24 momjian Exp $ */ #include "postgres_fe.h" #include "print.h" @@ -612,6 +612,7 @@ print_aligned_vertical(const char *title, const char *const * headers, #ifdef MULTIBYTE free(cell_w); + free(head_w); #endif }