We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4523298 commit 8067007Copy full SHA for 8067007
src/async-process.lisp
@@ -99,7 +99,10 @@
99
:for code := (cffi:mem-aref pointer :unsigned-char i)
100
:until (zerop code)
101
:collect code)))
102
- (map 'string 'code-char bytes))))
+ (babel:octets-to-string
103
+ (make-array (length bytes)
104
+ :element-type '(unsigned-byte 8)
105
+ :initial-contents bytes)))))
106
107
(defun process-receive-output (process)
108
(let ((cffi:*default-foreign-encoding* (process-encode process)))
0 commit comments