From: Victor Julien Date: Fri, 25 Mar 2016 11:58:55 +0000 (+0100) Subject: detect-flowvar: shrink mem structure by 8 bytes X-Git-Tag: suricata-3.1RC1~297 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1ee1258107945f6ab8316093e5e7241462f95b5;p=thirdparty%2Fsuricata.git detect-flowvar: shrink mem structure by 8 bytes --- diff --git a/src/detect.h b/src/detect.h index 3bee26fcd9..e321d5ca1d 100644 --- a/src/detect.h +++ b/src/detect.h @@ -461,9 +461,9 @@ typedef struct DetectReplaceList_ { typedef struct DetectFlowvarList_ { uint16_t idx; /**< flowvar name idx */ uint16_t len; /**< data len */ + int type; /**< type of store candidate POSTMATCH or ALWAYS */ uint8_t *buffer; /**< alloc'd buffer, may be freed by post-match, post-non-match */ - int type; /**< type of store candidate POSTMATCH or ALWAYS */ struct DetectFlowvarList_ *next; } DetectFlowvarList;