privoxy-regression-test.pl: Bump version
[privoxy.git] / w32log.c
index b60eae7..7500eda 100644 (file)
--- a/w32log.c
+++ b/w32log.c
@@ -316,6 +316,9 @@ void TermLogWindow(void)
 void LogCreatePatternMatchingBuffers(void)
 {
    int i;
+#ifdef HAVE_PCRE2
+#warning The win32 build of Privoxy is expected to crash when compiled with pcre2 support.
+#endif
    for (i = 0; patterns_to_highlight[i].str != NULL; i++)
    {
       regcomp(&patterns_to_highlight[i].buffer, patterns_to_highlight[i].str, REG_ICASE);
@@ -1187,7 +1190,7 @@ LRESULT CALLBACK LogWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPara
 
       case WM_SHOWWINDOW:
          g_bShowLogWindow = wParam;
-      case WM_SIZE:
+      case WM_SIZE:  /* note: implicit-fallthrough */
          /* Resize the logging window to fit the new frame */
          if (g_hwndLogBox)
          {