From 602271632a7f31463341e68ef96b58333d9c6715 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 25 Jul 2007 13:05:54 +0000 Subject: r24044: Fix an uninitialized variable warning (This used to be commit 69326a56e7fe2681eef3d58a9107765496756de4) --- source3/utils/log2pcaphex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/utils/log2pcaphex.c b/source3/utils/log2pcaphex.c index daebb56a88..6f07c4f543 100644 --- a/source3/utils/log2pcaphex.c +++ b/source3/utils/log2pcaphex.c @@ -228,7 +228,7 @@ int main (int argc, char **argv) int opt; poptContext pc; char buffer[4096]; - long data_offset, data_length; + long data_offset = 0, data_length; long data_bytes_read = 0; int in_packet = 0; struct poptOption long_options[] = { -- cgit