A refined core library for D programming language. The module has concurrency / collections / event / io / logging / text / serialization and more.
95
stars
15
forks
source link
fix crash: move stack var bufs and targets into class as static fields #97
Closed
mw66 closed 1 year ago
fix https://github.com/huntlabs/hunt/issues/96
in the old code: the
dateThread
is access stack variable (via the functick()
call),https://github.com/huntlabs/hunt/blob/master/source/hunt/util/DateTime.d#L423
which causing crash during druntime shutdown. Now move them into class as static fields.