mirror of
https://github.com/reactos/reactos.git
synced 2024-12-30 19:14:31 +00:00
Sorry, wrong version got commited
svn path=/trunk/; revision=15160
This commit is contained in:
parent
4cced63916
commit
261e754d28
1 changed files with 29 additions and 31 deletions
|
@ -4,7 +4,8 @@
|
||||||
* FILE: ntoskrnl/io/irp.c
|
* FILE: ntoskrnl/io/irp.c
|
||||||
* PURPOSE: Handle IRPs
|
* PURPOSE: Handle IRPs
|
||||||
*
|
*
|
||||||
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
|
* PROGRAMMERS: Hartmut Birr
|
||||||
|
* Alex Ionescu (alex@relsoft.net)
|
||||||
* David Welch (welch@mcmail.com)
|
* David Welch (welch@mcmail.com)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -260,11 +261,8 @@ IopCompleteRequest(PKAPC Apc,
|
||||||
/* Dereference the File Object */
|
/* Dereference the File Object */
|
||||||
if (FileObject) ObDereferenceObject(FileObject);
|
if (FileObject) ObDereferenceObject(FileObject);
|
||||||
|
|
||||||
if (Irp)
|
|
||||||
{
|
|
||||||
/* Free the IRP */
|
/* Free the IRP */
|
||||||
IoFreeIrp(Irp);
|
if (Irp) IoFreeIrp(Irp);
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue