Reformatted file.
authorArmin Novak <armin.novak@thincast.com>
Tue, 4 Oct 2016 07:00:00 +0000 (09:00 +0200)
committerArmin Novak <armin.novak@thincast.com>
Thu, 6 Oct 2016 11:43:13 +0000 (13:43 +0200)
channels/smartcard/client/smartcard_main.c

index 905aadd..9b04637 100644 (file)
@@ -235,11 +235,12 @@ static void smartcard_release_all_contexts(SMARTCARD_DEVICE* smartcard)
                        {
                                SCardReleaseContext(hContext);
 
-                               if (MessageQueue_PostQuit(pContext->IrpQueue, 0) && (WaitForSingleObject(pContext->thread, INFINITE) == WAIT_FAILED))
+                               if (MessageQueue_PostQuit(pContext->IrpQueue, 0)
+                                   && (WaitForSingleObject(pContext->thread, INFINITE) == WAIT_FAILED))
                                        WLog_ERR(TAG, "WaitForSingleObject failed with error %lu!", GetLastError());
 
                                CloseHandle(pContext->thread);
-                               MessageQueue_Free(pContext->IrpQueue);  
+                               MessageQueue_Free(pContext->IrpQueue);
                                free(pContext);
                        }
                }
@@ -644,6 +645,7 @@ static void* smartcard_thread_func(void* arg)
                                                error = CHANNEL_RC_OK;
                                                goto out;
                                        }
+
                                        WLog_ERR(TAG, "smartcard_complete_irp failed with error %lu!", error);
                                        goto out;
                                }