diff options
-rw-r--r-- | lib/pure/asyncdispatch.nim | 1 | ||||
-rw-r--r-- | lib/pure/asyncio.nim | 1 | ||||
-rw-r--r-- | tests/vm/tasmparser.nim | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim index f3d37f9d2..5363d8862 100644 --- a/lib/pure/asyncdispatch.nim +++ b/lib/pure/asyncdispatch.nim @@ -796,6 +796,7 @@ else: else: # FD no longer a part of the selector. Likely been closed # (e.g. socket disconnected). + discard processTimers(p) diff --git a/lib/pure/asyncio.nim b/lib/pure/asyncio.nim index 9299b7370..10be5e409 100644 --- a/lib/pure/asyncio.nim +++ b/lib/pure/asyncio.nim @@ -247,6 +247,7 @@ proc asyncSockHandleWrite(h: RootRef) = # Apparently the socket cannot be written to. Even though select # just told us that it can be... This used to be an assert. Just # do nothing instead. + discard elif bytesSent != sock.sendBuffer.len: sock.sendBuffer = sock.sendBuffer[bytesSent .. -1] elif bytesSent == sock.sendBuffer.len: diff --git a/tests/vm/tasmparser.nim b/tests/vm/tasmparser.nim index 24ccb2ec8..67313c858 100644 --- a/tests/vm/tasmparser.nim +++ b/tests/vm/tasmparser.nim @@ -37,7 +37,7 @@ proc asmx64 () {.compileTime} = proc abortAsmParse (err:string) = - # + discard let codeLen = code.len #let codeEnd = codeLen-1 |