* Ensure that the template buffer for sb_mkstemp is null-terminated.
(defun sb-mkstemp (template-string mode)
(declare (type string template-string)
(type unix-file-mode mode))
- (let ((template-buffer (string-to-octets template-string)))
+ (let ((template-buffer (string-to-octets template-string :null-terminate t)))
(with-pinned-objects (template-buffer)
(let ((fd (alien-funcall (extern-alien "sb_mkstemp"
(function int (* char) int))
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.21.35"
+"1.0.21.36"