By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1393
Collapse All | Expand All

(-)./kernel/kls_gif/fmt_codec_gif.cpp.ORI (+16 lines)
Lines 39-44 Link Here
39
39
40
#include "../xpm/codec_gif.xpm"
40
#include "../xpm/codec_gif.xpm"
41
41
42
/* GIFLIB_MAJOR is only defined in libgif >= 4.2.0 */ 
43
/* libgif 4.2.0 has retired PrintGifError() and added GifErrorString() */ 
44
#if defined(GIFLIB_MAJOR) && defined(GIFLIB_MINOR) && \ 
45
        ((GIFLIB_MAJOR == 4 && GIFLIB_MINOR >= 2) || GIFLIB_MAJOR > 4) 
46
static void PrintGifError(void)
47
{
48
  char *Err = GifErrorString();
49
50
  if (Err != NULL) {
51
    fprintf(stderr, "\nGIF-LIB error: %s.\n", Err);
52
  } else {
53
    fprintf(stderr, "\nGIF-LIB undefined error %d.\n", GifError());
54
  }
55
} 
56
#endif 
57
42
/*
58
/*
43
 *
59
 *
44
 * Originally designed to facilitate image transfer and online
60
 * Originally designed to facilitate image transfer and online

Return to bug 1393