j
k
j a
j l
Piotr Caban (@piotr) commented about dlls/msvcrt/time.c:
if(!secs) return NULL; if (*secs < 0) { *_errno() = EINVAL; return NULL; }
if(!secs) return NULL;
*_errno() = EINVAL;
return NULL;
The function succeeds for `*secs == -1` in ucrtbase (I didn't test other versions).
Back to the thread
Back to the list