arch/i386/kernel/kgdb_stub.c:1306: warning: 'time' might be used uninitialized in this function
arch/i386/kernel/kgdb_stub.c:1306: warning: 'dum' might be used uninitialized in this function


---

 arch/i386/kernel/kgdb_stub.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN arch/i386/kernel/kgdb_stub.c~kgdb-warning-fixes arch/i386/kernel/kgdb_stub.c
--- 25/arch/i386/kernel/kgdb_stub.c~kgdb-warning-fixes	2004-01-26 18:07:11.000000000 -0800
+++ 25-akpm/arch/i386/kernel/kgdb_stub.c	2004-01-26 18:07:11.000000000 -0800
@@ -1303,7 +1303,7 @@ kgdb_handle_exception(int exceptionVecto
 	}
 #endif
 	if (spinlock_count == 1) {
-		int time, end_time, dum;
+		int time = 0, end_time, dum = 0;
 		int i;
 		int cpu_logged_in[MAX_NO_CPUS] = {[0 ... MAX_NO_CPUS - 1] = (0)
 		};

_