mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +00:00
Do not read past end of input. Ensure NUL termination.
This commit is contained in:
@@ -82,7 +82,8 @@ proc copyStr(s: NimString, start: int): NimString {.compilerProc.} =
|
||||
proc toNimStr(str: cstring, len: int): NimString {.compilerProc.} =
|
||||
result = rawNewStringNoInit(len)
|
||||
result.len = len
|
||||
c_memcpy(result.data, str, len + 1)
|
||||
c_memcpy(result.data, str, len)
|
||||
result[result.len] = '\0'
|
||||
|
||||
proc cstrToNimstr(str: cstring): NimString {.compilerRtl.} =
|
||||
result = toNimStr(str, c_strlen(str))
|
||||
|
||||
Reference in New Issue
Block a user