summaryrefslogtreecommitdiff
path: root/ui/win32
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-01-18 02:43:54 -0800
committerGuy Harris <guy@alum.mit.edu>2015-01-18 10:44:27 +0000
commitc7500dd46ae24bd18cfd00e5b9426d4dad78db4d (patch)
tree398d16d45bf59cd30aca0213e7462a00918b9f07 /ui/win32
parentcfcbb286712ae392689e7cd1a640b57b611dd277 (diff)
downloadwireshark-c7500dd46ae24bd18cfd00e5b9426d4dad78db4d.tar.gz
Fix another dfilter_compile() call.
Change-Id: I8b035a09b1bc1981a78a80e0a2547dce65a2ac9c Reviewed-on: https://code.wireshark.org/review/6609 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/win32')
-rw-r--r--ui/win32/file_dlg_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/win32/file_dlg_win32.c b/ui/win32/file_dlg_win32.c
index 4145f1dd3a..57a8aa0419 100644
--- a/ui/win32/file_dlg_win32.c
+++ b/ui/win32/file_dlg_win32.c
@@ -1306,7 +1306,7 @@ filter_tb_syntax_check(HWND hwnd, TCHAR *filter_text) {
/* Default window background */
SendMessage(hwnd, EM_SETBKGNDCOLOR, (WPARAM) 1, COLOR_WINDOW);
return;
- } else if (dfilter_compile(utf_16to8(strval), &dfp)) { /* colorize filter string entry */
+ } else if (dfilter_compile(utf_16to8(strval), &dfp, NULL)) { /* colorize filter string entry */
if (dfp != NULL)
dfilter_free(dfp);
/* Valid (light green) */