View | Details | Raw Unified | Return to bug 152315
Collapse All | Expand All

(-)wordcut-0.5.1b2.orig/wordcut/wordcut_dict_dump.c (-3 / +1 lines)
Lines 4-10 Link Here
4
static char dump_buffer[1000];
4
static char dump_buffer[1000];
5
5
6
static void dump_(uint8_t *data,int p,int c) {
6
static void dump_(uint8_t *data,int p,int c) {
7
    uint8_t header=data[p],size;
7
    uint8_t header=data[p],size=data[p+1];
8
    int i;
8
    int i;
9
9
10
10
Lines 19-26 Link Here
19
        }
19
        }
20
        printf ("\n");
20
        printf ("\n");
21
    }
21
    }
22
    size=data[p+1];
23
24
                                
22
                                
25
    if (size > 0) {
23
    if (size > 0) {
26
        if (header & 0x2) {
24
        if (header & 0x2) {

Return to bug 152315