summaryrefslogtreecommitdiff
path: root/epan/dfilter/dfilter-macro.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-01-16 23:11:49 -0500
committerMichael Mann <mmann78@netscape.net>2015-01-18 00:28:53 +0000
commit86726f404a60003585d6a5f64f908b091bcac099 (patch)
tree91fa7b0b3c2b80d0cb9efa8cee25d95d5a1a2a4e /epan/dfilter/dfilter-macro.h
parent0ad15f88ccf434e8210ca64bc99ceeb24a943eb3 (diff)
downloadwireshark-86726f404a60003585d6a5f64f908b091bcac099.tar.gz
Trim down the use of ep_ memory in the display filter code.
Couldn't quite eliminate it completely, but it's much improved. Need to figure out where/when to free dfilter_error_msg. Change-Id: I10216e9546d38e83f69991ded8ec0b3fc8472035 Reviewed-on: https://code.wireshark.org/review/6591 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dfilter/dfilter-macro.h')
-rw-r--r--epan/dfilter/dfilter-macro.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dfilter/dfilter-macro.h b/epan/dfilter/dfilter-macro.h
index eda1cfc050..68462529ac 100644
--- a/epan/dfilter/dfilter-macro.h
+++ b/epan/dfilter/dfilter-macro.h
@@ -50,7 +50,7 @@ void dfilter_macro_save(const gchar*, gchar**);
void dfilter_macro_dump(void);
/* applies all macros to the given text and returns the resulting string or NULL on failure */
-const gchar* dfilter_macro_apply(const gchar* text, const gchar** error);
+const gchar* dfilter_macro_apply(const gchar* text, gchar** error);
void dfilter_macro_init(void);