Bug #114 ยป 0001-fix-for-bug-114.patch
src/detect-dce-iface.c | ||
---|---|---|
sigmatch_table[DETECT_DCE_IFACE].Free = DetectDceIfaceFree;
|
||
sigmatch_table[DETECT_DCE_IFACE].RegisterTests = DetectDceIfaceRegisterTests;
|
||
sigmatch_table[DETECT_DCE_IFACE].flags |= SIGMATCH_PAYLOAD;
|
||
parse_regex = pcre_compile(DETECT_DCE_IFACE_PCRE_PARSE_ARGS, opts, &eb,
|
||
&eo, NULL);
|
||
if (parse_regex == NULL) {
|
src/detect-dce-opnum.c | ||
---|---|---|
sigmatch_table[DETECT_DCE_OPNUM].Free = DetectDceOpnumFree;
|
||
sigmatch_table[DETECT_DCE_OPNUM].RegisterTests = DetectDceOpnumRegisterTests;
|
||
sigmatch_table[DETECT_DCE_OPNUM].flags |= SIGMATCH_PAYLOAD;
|
||
parse_regex = pcre_compile(DETECT_DCE_OPNUM_PCRE_PARSE_ARGS, opts, &eb,
|
||
&eo, NULL);
|
||
if (parse_regex == NULL) {
|
src/detect-dce-stub-data.c | ||
---|---|---|
sigmatch_table[DETECT_DCE_STUB_DATA].Free = NULL;
|
||
sigmatch_table[DETECT_DCE_STUB_DATA].RegisterTests = DetectDceStubDataRegisterTests;
|
||
sigmatch_table[DETECT_DCE_STUB_DATA].flags |= SIGMATCH_PAYLOAD;
|
||
return;
|
||
}
|
||