-
- Downloads
Prevent memory leaks in our various bison parsers when an error occurs
during parsing. Formerly the parser's stack was allocated with malloc and so wouldn't be reclaimed; this patch makes it use palloc instead, so that flushing the current context will reclaim the memory. Per Marko Kreen.
Showing
- contrib/cube/cubeparse.y 12 additions, 1 deletioncontrib/cube/cubeparse.y
- contrib/seg/segparse.y 11 additions, 0 deletionscontrib/seg/segparse.y
- src/backend/bootstrap/bootparse.y 12 additions, 1 deletionsrc/backend/bootstrap/bootparse.y
- src/backend/parser/gram.y 12 additions, 1 deletionsrc/backend/parser/gram.y
- src/pl/plpgsql/src/gram.y 13 additions, 1 deletionsrc/pl/plpgsql/src/gram.y
Loading
Please register or sign in to comment