Commit b9f16535 authored by Bruce Momjian's avatar Bruce Momjian

Fix for oidArray from Christopher Oliver.

parent b932b1b1
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/regproc.c,v 1.28 1998/09/22 20:28:11 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/adt/regproc.c,v 1.29 1998/09/23 17:50:12 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -228,7 +228,7 @@ oid8types(Oid *oidArray) ...@@ -228,7 +228,7 @@ oid8types(Oid *oidArray)
result = (text *) palloc(NAMEDATALEN * 8 + 8 + VARHDRSZ); result = (text *) palloc(NAMEDATALEN * 8 + 8 + VARHDRSZ);
*VARDATA(result) = '\0'; *VARDATA(result) = '\0';
sp = *oidArray; sp = oidArray;
for (num = 8; num != 0; num--, sp++) for (num = 8; num != 0; num--, sp++)
{ {
if (*sp != InvalidOid) if (*sp != InvalidOid)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment