reduce diff to trunk
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 25 Mar 2010 02:58:46 +0000 (02:58 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Thu, 25 Mar 2010 02:58:46 +0000 (02:58 +0000)
svn path=/branches/ros-amd64-bringup/; revision=46421

reactos/drivers/wdm/audio/legacy/wdmaud/control.c
reactos/drivers/wdm/audio/legacy/wdmaud/entry.c

index 631b861..07e9ef8 100644 (file)
@@ -151,7 +151,7 @@ WdmAudIoctlClose(
             {
                 ObDereferenceObject(ClientInfo->hPins[Index].NotifyEvent);
                 ClientInfo->hPins[Index].NotifyEvent = NULL;
-    }
+            }
         }
     }
 
index 572a972..20421ea 100644 (file)
@@ -228,25 +228,25 @@ WdmAudCleanup(
     KeReleaseSpinLock(&DeviceExtension->Lock, OldIrql);
 
     /* check if all audio pins have been closed */
-        for (Index = 0; Index < pClient->NumPins; Index++)
-        {
-           DPRINT("Index %u Pin %p Type %x\n", Index, pClient->hPins[Index].Handle, pClient->hPins[Index].Type);
-           if (pClient->hPins[Index].Handle && pClient->hPins[Index].Type != MIXER_DEVICE_TYPE)
-           {
+    for (Index = 0; Index < pClient->NumPins; Index++)
+    {
+       DPRINT("Index %u Pin %p Type %x\n", Index, pClient->hPins[Index].Handle, pClient->hPins[Index].Type);
+       if (pClient->hPins[Index].Handle && pClient->hPins[Index].Type != MIXER_DEVICE_TYPE)
+       {
            /* found an still open audio pin */
-               ZwClose(pClient->hPins[Index].Handle);
-           }
-        }
+           ZwClose(pClient->hPins[Index].Handle);
+       }
+    }
 
     /* free pin array */
-        if (pClient->hPins)
-            ExFreePool(pClient->hPins);
+    if (pClient->hPins)
+        ExFreePool(pClient->hPins);
 
     /* free client context struct */
-        ExFreePool(pClient);
+    ExFreePool(pClient);
 
     /* clear old client pointer */
-        IoStack->FileObject->FsContext = NULL;
+    IoStack->FileObject->FsContext = NULL;
 
     /* complete request */
     Irp->IoStatus.Status = STATUS_SUCCESS;