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

(-)a/image_utils.c (-1 / +1 lines)
Lines 190-196 Link Here
190
	src->pub.bytes_in_buffer = bufsize;
190
	src->pub.bytes_in_buffer = bufsize;
191
}
191
}
192
192
193
jmp_buf setjmp_buffer;
193
static jmp_buf setjmp_buffer;
194
/* Don't exit on error like libjpeg likes to do */
194
/* Don't exit on error like libjpeg likes to do */
195
static void
195
static void
196
libjpeg_error_handler(j_common_ptr cinfo)
196
libjpeg_error_handler(j_common_ptr cinfo)
(-)a/metadata.c (-1 / +1 lines)
Lines 484-490 Link Here
484
}
484
}
485
485
486
/* For libjpeg error handling */
486
/* For libjpeg error handling */
487
jmp_buf setjmp_buffer;
487
static jmp_buf setjmp_buffer;
488
static void
488
static void
489
libjpeg_error_handler(j_common_ptr cinfo)
489
libjpeg_error_handler(j_common_ptr cinfo)
490
{
490
{
(-)a/tivo_utils.c (+1 lines)
Lines 27-32 Link Here
27
#include <sqlite3.h>
27
#include <sqlite3.h>
28
#include "tivo_utils.h"
28
#include "tivo_utils.h"
29
29
30
struct sqlite3PrngType sqlite3Prng;
30
/* This function based on byRequest */
31
/* This function based on byRequest */
31
char *
32
char *
32
decodeString(char *string, int inplace)
33
decodeString(char *string, int inplace)
(-)a/tivo_utils.h (-1 / +3 lines)
Lines 30-36 Link Here
30
  unsigned char isInit;          /* True if initialized */
30
  unsigned char isInit;          /* True if initialized */
31
  unsigned char i, j;            /* State variables */
31
  unsigned char i, j;            /* State variables */
32
  unsigned char s[256];          /* State variables */
32
  unsigned char s[256];          /* State variables */
33
} sqlite3Prng;
33
};
34
35
extern struct sqlite3PrngType sqlite3Prng;
34
36
35
char *
37
char *
36
decodeString(char *string, int inplace);
38
decodeString(char *string, int inplace);

Return to bug 706916