]> git.pld-linux.org Git - packages/gd.git/blob - gd-return.patch
- missing return (SEGV caught on ppc, worked on other archs by accident)
[packages/gd.git] / gd-return.patch
1 --- gd-2.0.22/gd_io_dp.c.orig   2004-01-15 17:18:55.000000000 +0000
2 +++ gd-2.0.22/gd_io_dp.c        2004-04-19 21:13:53.846110631 +0000
3 @@ -72,7 +72,7 @@
4  gdIOCtx *
5  gdNewDynamicCtx (int initialSize, void *data)
6  {
7 -  gdNewDynamicCtxEx(initialSize, data, 1);
8 +  return gdNewDynamicCtxEx(initialSize, data, 1);
9  }
10  
11  gdIOCtx *
This page took 0.035133 seconds and 3 git commands to generate.