blob: 4cc2058f4c8a912f93c243329888a3c07fa59f7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
*** gc_hdrs.h.orig Tue Jun 5 14:01:25 2007
--- gc_hdrs.h Thu Oct 18 14:32:03 2007
***************
*** 112,119 ****
hhdr = hce -> hce_hdr; \
} else { \
hhdr = HEADER_CACHE_MISS(p, hce, source); \
- if (0 == hhdr) goto exit_label; \
} \
}
typedef struct bi {
--- 112,119 ----
hhdr = hce -> hce_hdr; \
} else { \
hhdr = HEADER_CACHE_MISS(p, hce, source); \
} \
+ if (0 == hhdr) goto exit_label; \
}
typedef struct bi {
|