commit | 668ae532b9edd39907d3e646fb6a8f526116607f | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sun Dec 15 16:42:26 2013 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Mon Dec 16 02:23:51 2013 +0100 |
tree | e8213ee59d916097bef5f6d6b2b47370d5db24d1 | |
parent | 6173bbee085f1c5c7288056c3e34937c62301e25 [diff] |
BUILD: pattern: silence a warning about uninitialized value Gcc 3.4 warns that mask may be used uninitialized in pattern.c. This is wrong since it's used in the same condition as its assignment, although it's not necessarily obvious for the compiler. Fix this by initializing the value. This was introduced by recent commit 01cdcd4a so no backport is needed.