Fix bogus queue assert firing on failed connection

This commit is contained in:
Cameron Gutman
2017-05-21 10:37:34 -07:00
parent eaf3355c96
commit 109472e4ab
2 changed files with 3 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ typedef struct _LINKED_BLOCKING_QUEUE {
int sizeBound;
int currentSize;
int shutdown;
int lifetimeSize;
PLINKED_BLOCKING_QUEUE_ENTRY head;
PLINKED_BLOCKING_QUEUE_ENTRY tail;
} LINKED_BLOCKING_QUEUE, *PLINKED_BLOCKING_QUEUE;