From 7fc806568556c44c36809ffec2d8bb294420b488 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 5 Dec 2009 22:48:43 +0000 Subject: [PATCH] Fix uninitialized variable svn path=/branches/ros-amd64-bringup/; revision=44428 --- reactos/lib/rtl/amd64/unwind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/rtl/amd64/unwind.c b/reactos/lib/rtl/amd64/unwind.c index fabda830821..914317f1717 100644 --- a/reactos/lib/rtl/amd64/unwind.c +++ b/reactos/lib/rtl/amd64/unwind.c @@ -623,7 +623,7 @@ NTAPI RtlRaiseException(IN PEXCEPTION_RECORD ExceptionRecord) { CONTEXT Context; - NTSTATUS Status; + NTSTATUS Status = STATUS_INVALID_DISPOSITION; ULONG64 ImageBase; PRUNTIME_FUNCTION FunctionEntry; PVOID HandlerData;