From f1ee1258107945f6ab8316093e5e7241462f95b5 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 25 Mar 2016 12:58:55 +0100 Subject: [PATCH] detect-flowvar: shrink mem structure by 8 bytes --- src/detect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2