From 16deb5bf2466707f46cda2c26a6d3b6ebbf64daa Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Wed, 2 Sep 2015 05:38:02 +0000 Subject: [PATCH] [RTL] - Fix check for optional parameters in RtlGetCallersAddress svn path=/trunk/; revision=68909 --- reactos/lib/rtl/i386/except.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/rtl/i386/except.c b/reactos/lib/rtl/i386/except.c index bef11af0851..ab465ebbbd9 100644 --- a/reactos/lib/rtl/i386/except.c +++ b/reactos/lib/rtl/i386/except.c @@ -31,7 +31,7 @@ RtlGetCallersAddress(OUT PVOID *CallersAddress, FrameCount = RtlCaptureStackBackTrace(2, 2, &BackTrace[0],BackTraceHash); /* Only if user want it */ - if (*CallersAddress != NULL) + if (CallersAddress != NULL) { /* only when first frames exist */ if (FrameCount >= 1) @@ -45,7 +45,7 @@ RtlGetCallersAddress(OUT PVOID *CallersAddress, } /* Only if user want it */ - if (*CallersCaller != NULL) + if (CallersCaller != NULL) { /* only when second frames exist */ if (FrameCount >= 2)