make gcc stop nag about uninitialized value in 114: and make -O3 working
Modified: trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
_____
Modified: trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
--- trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
2005-06-18 21:10:48 UTC (rev 16062)
+++ trunk/reactos/drivers/usb/cromwell/sys/linuxwrapper.c
2005-06-18 21:55:59 UTC (rev 16063)
@@ -111,7 +111,7 @@
// ReactOS Purpose: Create real kernel thread
int my_kernel_thread(int STDCALL (*handler)(void*), void* parm, int
flags)
{
- HANDLE hThread;
+ HANDLE hThread = NULL;
//thread_handler=handler;
//thread_parm=parm;
//return 42; // PID :-)
Show replies by date