Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zach Beane
zacl
Commits
e60b6173
Commit
e60b6173
authored
Nov 22, 2016
by
Zach Beane
Browse files
Fix bounds of strings converted in EXCL:WRITE-VECTOR.
parent
7263be16
Changes
1
Hide whitespace changes
Inline
Side-by-side
package-excl.lisp
View file @
e60b6173
...
...
@@ -428,7 +428,9 @@ values otherwise."
;; The real write-vector has more complicated blocking
;; behavior. Save that for later.
(
when
(
stringp
vector
)
(
setf
vector
(
string-to-octets
vector
:start
start
:end
end
)))
(
setf
vector
(
string-to-octets
vector
:start
start
:end
end
))
(
setf
start
0
)
(
setf
end
(
length
vector
)))
(
write-sequence
vector
stream
:start
start
:end
end
)
end
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment