From cc121d93c29937d41c5eeace4e50a9a62341049e Mon Sep 17 00:00:00 2001 From: Tony Mann Date: Mon, 20 Apr 1998 11:54:30 +0100 Subject: [PATCH] Change 160044: fill in mutator context with lpexception_pointers not lpexception_record Copied from Perforce Change: 19436 ServerID: perforce.ravenbrook.com --- mps/src/protw3.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mps/src/protw3.c b/mps/src/protw3.c index 5ee7fd4fd96..bf50f75563f 100644 --- a/mps/src/protw3.c +++ b/mps/src/protw3.c @@ -1,6 +1,6 @@ /* impl.c.protw3: PROTECTION FOR WIN32 * - * $HopeName: MMsrc!protw3.c(trunk.12) $ + * $HopeName: MMsrc!protw3.c(trunk.13) $ * Copyright (C) 1995, 1997 Harlequin Group, all rights reserved */ @@ -18,7 +18,7 @@ #include "mpswin.h" -SRCID(protw3, "$HopeName: MMsrc!protw3.c(trunk.12) $"); +SRCID(protw3, "$HopeName: MMsrc!protw3.c(trunk.13) $"); void ProtSetup(void) @@ -63,7 +63,7 @@ LONG ProtSEHfilter(LPEXCEPTION_POINTERS info) if(er->ExceptionCode != EXCEPTION_ACCESS_VIOLATION) return EXCEPTION_CONTINUE_SEARCH; - context.er = er; + context.ep = info; /* assert that the exception is continuable */ /* Note that Microsoft say that this field should be 0 or */