summaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-19 13:32:14 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-19 13:32:14 +0000
commit60b1123f5ec8adf90fffb523ad3850ca02de00e2 (patch)
treef1e7cadcd9e143b824828170d0890e2a75a86342 /src/backend/nodes/copyfuncs.c
parent77e01653bc5d43614ffb835b1cafc5387c28fc60 (diff)
Fixes:
Here's a couple more small fixes that I've made to make my runtime checker happy with the code. More along the lines of those that I sent in the past, ie, a pointer to an array != the name of an array. The last patch is that I mailed about yesterday -- I got two replies of "do it", so it's done. As far as I can tell, however, the function in question is never called by pg95, so either way it can't hurt... From: "Kurt J. Lidl" <lidl@va.pubnix.com>
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r--src/backend/nodes/copyfuncs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c
index c04bf3627e6..4f49138edfd 100644
--- a/src/backend/nodes/copyfuncs.c
+++ b/src/backend/nodes/copyfuncs.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.1.1.1 1996/07/09 06:21:32 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.2 1996/08/19 13:32:14 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -589,7 +589,7 @@ _copyResdom(Resdom *from)
static Fjoin *
_copyFjoin(Fjoin *from)
{
- Fjoin *newnode;
+ Fjoin *newnode = makeNode(Fjoin);
/* ----------------
* copy node superclass fields