Skip to content

Commit 1cc70b8

Browse files
committed
fix: aggressive cleanup
1 parent c5f1ce2 commit 1cc70b8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ OBJS += &
1212

1313
INCS = -I$(%WATCOM)\h\win -Iddk -Ivmware
1414

15-
VER_BUILD = 87
15+
VER_BUILD = 88
1616

1717
FLAGS = -DDRV_VER_BUILD=$(VER_BUILD)
1818

vxd_main.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,9 @@ DWORD __stdcall Device_IO_Control_proc(DWORD vmhandle, struct DIOCParams *params
600600
#ifdef SVGA
601601
if(io_open_cnt == 0)
602602
{
603-
dbg_printf("Zero reference, do ALL cleanup!\n");
604-
SVGA_AllProcessCleanup();
603+
// JH: too aggressive - cause problems
604+
//dbg_printf("Zero reference, do ALL cleanup!\n");
605+
//SVGA_AllProcessCleanup();
605606
}
606607
#endif
607608
rc = 0;

0 commit comments

Comments
 (0)