Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 389591
Collapse All | Expand All

(-)zgv-5.9.orig/src/readpng.c (-2 / +2 lines)
Lines 63-69 Link Here
63
use_errmsg=1;
63
use_errmsg=1;
64
64
65
/* cleanup is done after jump back, so just do that now... */
65
/* cleanup is done after jump back, so just do that now... */
66
longjmp(png_ptr->jmpbuf,1);
66
longjmp(png_jmpbuf(png_ptr), 1);
67
}
67
}
68
68
69
69
Lines 132-138 Link Here
132
  return(_PICERR_NOMEM);
132
  return(_PICERR_NOMEM);
133
  }
133
  }
134
134
135
if(setjmp(png_ptr->jmpbuf))
135
if(setjmp(png_jmpbuf(png_ptr)))
136
  {
136
  {
137
  /* if we get here, there was an error. */
137
  /* if we get here, there was an error. */
138
  /* don't use local variables here, they may have been blasted */
138
  /* don't use local variables here, they may have been blasted */

Return to bug 389591