]> granicus.if.org Git - postgresql/commitdiff
Backpatch fix for buffer overrun in parsing refcursor parameters to
authorNeil Conway <neilc@samurai.com>
Thu, 27 Jan 2005 01:44:42 +0000 (01:44 +0000)
committerNeil Conway <neilc@samurai.com>
Thu, 27 Jan 2005 01:44:42 +0000 (01:44 +0000)
REL7_3_STABLE.

src/pl/plpgsql/src/gram.y

index d22e4aa0e44d3d249351060a4b49e2b0ff2d5663..30cc0e928954c5ee38bb1a6297eacd05cbf5348b 100644 (file)
@@ -4,7 +4,7 @@
  *                                               procedural language
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.39 2002/11/01 22:52:34 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/pl/plpgsql/src/gram.y,v 1.39.2.1 2005/01/27 01:44:42 neilc Exp $
  *
  *       This software is copyrighted by Jan Wieck - Hamburg.
  *
@@ -478,6 +478,10 @@ decl_cursor_arglist : decl_cursor_arg
                                        {
                                                int i = $1->nfields++;
 
+                                               /* Guard against overflowing the array on malicious input */
+                                               if (i >= 1024)
+                                                       yyerror("too many parameters specified for refcursor");
+
                                                $1->fieldnames[i] = $3->refname;
                                                $1->varnos[i] = $3->varno;