ExRaiseStatus() is now fatal back again as SEH is not needed for valid ops
authorshort <>
Wed, 30 Apr 2003 05:58:50 +0000 (05:58 +0000)
committershort <>
Wed, 30 Apr 2003 05:58:50 +0000 (05:58 +0000)
src/libcaptive/ke/catch.c

index 3a8dafa..f836179 100644 (file)
@@ -23,8 +23,6 @@
 #include <glib/gmessages.h>
 
 
-#if 0
-
 /**
  * ExRaiseStatus:
  * @Status: #NTSTATUS type code.
@@ -34,8 +32,6 @@
  */
 VOID ExRaiseStatus(IN NTSTATUS Status)
 {
-       g_message("ExRaiseStatus(0x%08X)\n",(guint32)Status);
+       g_error("ExRaiseStatus(0x%08X)\n",(guint32)Status);
        g_assert_not_reached();
 }
-
-#endif