Raymond Toy pushed to branch issue-364-add-mkstemp-mkdtemp at cmucl / cmucl Commits: f230bce9 by Raymond Toy at 2025-01-08T19:35:42-08:00 Use NULL-ALIEN to check if result is NULL in unix-mkdtemp - - - - - 1 changed file: - src/code/unix.lisp Changes: ===================================== src/code/unix.lisp ===================================== @@ -2926,6 +2926,6 @@ (function (* char) c-call:c-string)) octets))) - (if (zerop (sap-int (alien-sap result))) + (if (null-alien result) (values nil (unix-errno)) (%file->name octets)))) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f230bce9c3d1f315ac8c3c9c... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/f230bce9c3d1f315ac8c3c9c... You're receiving this email because of your account on gitlab.common-lisp.net.