[Com0com-cvs] com0com/sys startirp.c,1.14,1.15
The virtual serial port driver for Windows.
Brought to you by:
vfrolov
From: Vyacheslav F. <vf...@us...> - 2007-01-22 17:05:32
|
Update of /cvsroot/com0com/com0com/sys In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21789 Modified Files: startirp.c Log Message: Added missing 1IoMarkIrpPending() Index: startirp.c =================================================================== RCS file: /cvsroot/com0com/com0com/sys/startirp.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** startirp.c 15 Jan 2007 16:09:16 -0000 1.14 --- startirp.c 22 Jan 2007 17:05:16 -0000 1.15 *************** *** 20,23 **** --- 20,26 ---- * * $Log$ + * Revision 1.15 2007/01/22 17:05:16 vfrolov + * Added missing 1IoMarkIrpPending() + * * Revision 1.14 2007/01/15 16:09:16 vfrolov * Fixed non zero Information for IOCTL_SERIAL_IMMEDIATE_CHAR *************** *** 254,259 **** #pragma warning(pop) ! if (!pCancelRoutine) return STATUS_PENDING; return status; --- 257,264 ---- #pragma warning(pop) ! if (!pCancelRoutine) { ! IoMarkIrpPending(pIrp); return STATUS_PENDING; + } return status; |