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

(-)libgg.c.orig (-2 / +5 lines)
Lines 1086-1093 Link Here
1086
1086
1087
			    e->event.status60.descr = buf;
1087
			    e->event.status60.descr = buf;
1088
1088
1089
			    if (len > 4 && p[h->length - 5] == 0)
1089
			    if (len > 4 && p[h->length - 5] == 0) {
1090
				    e->event.status60.time = *((int*) (p + h->length - 4));
1090
				    uint32_t t;
1091
				    memcpy(&t, p + h->length - 4, sizeof(uint32_t));
1092
				    e->event.status60.time = t;
1093
			    }
1091
		    }
1094
		    }
1092
1095
1093
		    break;
1096
		    break;

Return to bug 97408