diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system/assign.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/system/assign.nim b/lib/system/assign.nim index a809fa423..8ba3e409d 100644 --- a/lib/system/assign.nim +++ b/lib/system/assign.nim @@ -122,7 +122,9 @@ proc genericAssignAux(dest, src: pointer, mt: PNimType, shallow: bool) = # var tbObj = TB(p) # tbObj of TC # needs to be false! #c_fprintf(stdout, "%s %s\n", pint[].name, mt.name) - chckObjAsgn(cast[ptr PNimType](src)[], mt) + let srcType = cast[ptr PNimType](src)[] # object is not initialized properly(for example std/times.DateTime) + if srcType != nil: + chckObjAsgn(srcType, mt) pint[] = mt # cast[ptr PNimType](src)[] of tyTuple: genericAssignAux(dest, src, mt.node, shallow) |