diff options
-rw-r--r-- | lib/pure/net.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/net.nim b/lib/pure/net.nim index 7dc2d318b..a166def8f 100644 --- a/lib/pure/net.nim +++ b/lib/pure/net.nim @@ -1263,7 +1263,7 @@ proc recvLine*(socket: Socket, timeout = -1, ## that can be read. The result is truncated after that. ## ## **Warning**: Only the ``SafeDisconn`` flag is currently supported. - result = "" + result = "".TaintedString readLine(socket, result, timeout, flags, maxLength) proc recvFrom*(socket: Socket, data: var string, length: int, |