Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 109760 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-25 / +13 lines)
Line 63 Link Here
63
static int getIntAt(const char * pos) {
63
static int getIntAt(const void * pos) {
64
--
Line 89 Link Here
89
static struct EXTRACTOR_Keywords * processtEXt(const unsigned char * data,
89
static struct EXTRACTOR_Keywords * processtEXt(const char * data,
90
--
Line 117 Link Here
117
static struct EXTRACTOR_Keywords * processiTXt(const unsigned char * data,
117
static struct EXTRACTOR_Keywords * processiTXt(const char * data,
118
--
Line 168 Link Here
168
      ret = uncompress(buf,
168
      ret = uncompress((Bytef*) buf,
169
--
Line 170 Link Here
170
		       &data[pos],
170
		       (const Bytef*) &data[pos],
171
--
Line 199 Link Here
199
static struct EXTRACTOR_Keywords * processIHDR(const unsigned char * data,
199
static struct EXTRACTOR_Keywords * processIHDR(const char * data,
200
--
Line 219 Link Here
219
static struct EXTRACTOR_Keywords * processzTXt(const unsigned char * data,
219
static struct EXTRACTOR_Keywords * processzTXt(const char * data,
220
--
Line 251 Link Here
251
    ret = uncompress(buf,
251
    ret = uncompress((Bytef*) buf,
252
--
Line 253 Link Here
253
		     &data[off],
253
		     (const Bytef*) &data[off],
254
--
Line 286 Link Here
286
                                                     const unsigned char * data,
286
                                                     const char * data,
287
--
Lines 289-290 Link Here
289
  const unsigned char * pos;
289
  const char * pos;
290
  const unsigned char * end;
290
  const char * end;
291
--
Line 310 Link Here
310
	 (pos+4+length+4 < pos + 4 + length) )
310
	 (pos+4+length+4 < pos + 8) )
311
--

Return to bug 109760