logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 9e95743da07356b2d3615cdd9583da590b14945c
parent 84a6b2fa9084c814707ac3742378594708006174
Author: Frederic Cambus <fred@statdns.com>
Date:   Tue,  6 Dec 2016 20:52:39 +0100

'geoipv4' and 'geoipv6' may not be used uninitialized anymore

Diffstat:
Msrc/logswan.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/logswan.c b/src/logswan.c @@ -53,7 +53,7 @@ void displayUsage() { int main (int argc, char *argv[]) { bool geoip = false; - GeoIP *geoipv4, *geoipv6; + GeoIP *geoipv4 = NULL, *geoipv6 = NULL; clock_t begin, end;