Skip to content
Snippets Groups Projects
Commit 010c6504 authored by Tom Lane's avatar Tom Lane
Browse files

Put back braces removed by pgindent (not really pgindent's fault).

parent 089003fb
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
* MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. * MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/pl/plpython/plpython.c,v 1.37 2003/08/04 00:43:33 momjian Exp $ * $Header: /cvsroot/pgsql/src/pl/plpython/plpython.c,v 1.38 2003/08/04 01:57:58 tgl Exp $
* *
********************************************************************* *********************************************************************
*/ */
...@@ -352,7 +352,10 @@ plpython_call_handler(PG_FUNCTION_ARGS) ...@@ -352,7 +352,10 @@ plpython_call_handler(PG_FUNCTION_ARGS)
else else
PLy_restart_in_progress += 1; PLy_restart_in_progress += 1;
if (proc) if (proc)
{
/* note: Py_DECREF needs braces around it, as of 2003/08 */
Py_DECREF(proc->me); Py_DECREF(proc->me);
}
RERAISE_EXC(); RERAISE_EXC();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment