You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be a bug in the S-expression parser. When the file to be read is larger than BUFSIZ bytes (which is 1024 on my system), I get the error SEXP_ERR_INCOMPLETE (in the sexp_errno variable).
I don't know how to properly fix it, but adding the lines
#undef BUFSIZ
#defineBUFSIZ10240
after the includes in sexp.h makes the error disappear for my larger file.
The text was updated successfully, but these errors were encountered:
There seems to be a bug in the S-expression parser. When the file to be read is larger than
BUFSIZ
bytes (which is 1024 on my system), I get the errorSEXP_ERR_INCOMPLETE
(in thesexp_errno
variable).I don't know how to properly fix it, but adding the lines
after the includes in
sexp.h
makes the error disappear for my larger file.The text was updated successfully, but these errors were encountered: