Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
MSVC late cleanup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static builds
|
|
|
|
|
|
MI_DEBUG_UNINIT (issue #501)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Replace mi_strlcpy() and mi_strlcat() with versions written from scratch
|
|
|
|
|
|
See microsoft/mimalloc#502, second issue, for a scenario where this occurs.
|
|
They used strncpy() and strncat(), which behave almost, but not
quite like the ...l... functions.
Since these functions are not standard, and not all OSes have
comparable functions available, just add a implementations.
Addresses first issue raised in microsoft/mimalloc#502.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(found by Matthew Parkinson).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|