1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-26 23:43:30 +03:00

Back-patch the other part of Karel's formatting bug fix.

This commit is contained in:
Tom Lane
2003-09-03 19:01:35 +00:00
parent e6d6713ceb
commit 64b9dfa56f

View File

@@ -1,7 +1,7 @@
/* ----------------------------------------------------------------------- /* -----------------------------------------------------------------------
* formatting.c * formatting.c
* *
* $Header: /cvsroot/pgsql/src/backend/utils/adt/formatting.c,v 1.56.2.1 2003/09/03 15:00:07 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/formatting.c,v 1.56.2.2 2003/09/03 19:01:35 tgl Exp $
* *
* *
* Portions Copyright (c) 1999-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1999-2002, PostgreSQL Global Development Group
@@ -2924,7 +2924,7 @@ to_timestamp(PG_FUNCTION_ARGS)
*/ */
DCHCacheEntry *ent; DCHCacheEntry *ent;
incache = 0; incache = TRUE;
if ((ent = DCH_cache_search(str)) == NULL) if ((ent = DCH_cache_search(str)) == NULL)
{ {
@@ -2966,7 +2966,7 @@ to_timestamp(PG_FUNCTION_ARGS)
pfree(date_str); pfree(date_str);
pfree(str); pfree(str);
if (incache) if (!incache)
pfree(format); pfree(format);
} }