From 099a482f0470e86ae2f7852321dcfe1fac5c918c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Tue, 12 Sep 2017 14:49:52 +0300 Subject: [PATCH] Add missing default case to masking filter The default case for the PS field values was missing. --- server/modules/filter/masking/mysql.hh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/modules/filter/masking/mysql.hh b/server/modules/filter/masking/mysql.hh index 3f9b63e11..a15df7133 100644 --- a/server/modules/filter/masking/mysql.hh +++ b/server/modules/filter/masking/mysql.hh @@ -1104,6 +1104,9 @@ public: case MAX_NO_FIELD_TYPES: ss_dassert(!true); break; + + default: + break; } ++m_iNulls;