diff options
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/repr.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/system/repr.nim b/lib/system/repr.nim index 04dbe1142..d9aa03b53 100644 --- a/lib/system/repr.nim +++ b/lib/system/repr.nim @@ -277,7 +277,9 @@ when not defined(useNimRtl): of tyEnum: add result, reprEnum(getInt(p, typ.size), typ) of tyBool: add result, reprBool(cast[ptr bool](p)[]) of tyChar: add result, reprChar(cast[ptr char](p)[]) - of tyString: reprStrAux(result, cast[ptr string](p)[], cast[ptr string](p)[].len) + of tyString: + let sp = cast[ptr string](p) + reprStrAux(result, if sp[].isNil: nil else: sp[].cstring, sp[].len) of tyCString: let cs = cast[ptr cstring](p)[] if cs.isNil: add result, "nil" |