1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-17 17:02:08 +03:00

Fix an uninitialized field in DR_copy.

Shigeru HANADA
This commit is contained in:
Itagaki Takahiro
2011-02-18 14:29:40 +09:00
parent 62c7bd31c8
commit 5c63982af2

View File

@ -3798,6 +3798,7 @@ CreateCopyDestReceiver(void)
self->pub.mydest = DestCopyOut;
self->cstate = NULL; /* will be set later */
self->processed = 0;
return (DestReceiver *) self;
}