File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 12
12
* by PostgreSQL
13
13
*
14
14
* IDENTIFICATION
15
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.545 2009/08/04 16:08:36 tgl Exp $
15
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.546 2009/08/04 19:46:51 tgl Exp $
16
16
*
17
17
*-------------------------------------------------------------------------
18
18
*/
@@ -11111,7 +11111,8 @@ dumpTrigger(Archive *fout, TriggerInfo *tginfo)
11111
11111
appendPQExpBuffer (query , "EXECUTE PROCEDURE %s(" ,
11112
11112
fmtId (tginfo -> tgfname ));
11113
11113
11114
- tgargs = (char * ) PQunescapeBytea (tginfo -> tgargs , & lentgargs );
11114
+ tgargs = (char * ) PQunescapeBytea ((unsigned char * ) tginfo -> tgargs ,
11115
+ & lentgargs );
11115
11116
p = tgargs ;
11116
11117
for (findx = 0 ; findx < tginfo -> tgnargs ; findx ++ )
11117
11118
{
You can’t perform that action at this time.
0 commit comments