mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 16:31:07 +08:00
[CDFS_NEW] Remove a broken change (lol?!) that prevented the driver to properly work in ROS... Dropping SEH doesn't mean dropping code!
This commit is contained in:
@@ -1889,8 +1889,8 @@ CdCommonPnp ( // Implemented in Pnp.c
|
||||
#define GetExceptionCode() 0
|
||||
#define AbnormalTermination() 0
|
||||
|
||||
#define try_return(S) { goto try_exit; }
|
||||
#define try_leave(S) { leave; }
|
||||
#define try_return(S) { S; goto try_exit; }
|
||||
#define try_leave(S) { S; leave; }
|
||||
|
||||
|
||||
//
|
||||
|
||||
@@ -564,10 +564,8 @@ Index: drivers/filesystems/cdfs_new/cdprocs.h
|
||||
+#define GetExceptionCode() 0
|
||||
+#define AbnormalTermination() 0
|
||||
|
||||
-#define try_return(S) { S; goto try_exit; }
|
||||
-#define try_leave(S) { S; leave; }
|
||||
+#define try_return(S) { goto try_exit; }
|
||||
+#define try_leave(S) { leave; }
|
||||
#define try_return(S) { S; goto try_exit; }
|
||||
#define try_leave(S) { S; leave; }
|
||||
|
||||
+
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user