mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-09 13:18:11 +00:00
Fix string stream crashing when created on nimscript due to last fix (#19717)
This commit is contained in:
@@ -1274,7 +1274,7 @@ else: # after 1.3 or JS not defined
|
||||
|
||||
new(result)
|
||||
result.data = s
|
||||
when defined(gcOrc) or defined(gcArc):
|
||||
when declared(prepareMutation):
|
||||
prepareMutation(result.data) # Allows us to mutate using `addr` logic like `copyMem`, otherwise it errors.
|
||||
result.pos = 0
|
||||
result.closeImpl = ssClose
|
||||
|
||||
Reference in New Issue
Block a user