Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimally reproducible example:
fread("1\n2\n3", fill=T) # Error in fread("1\n2\n3", fill = T) : # Internal error: ncol==0 line==1 after detecting sep, ncol and first line
There is a related bug (trivial to fix) there, in the error-reporting line:
STOP("Internal error: ncol==%d line==%d after detecting sep, ncol and first line");
here ncol and line are not passed as the varargs, which may result in random data being printed, or occasionally segfaulting.
ncol
line
The text was updated successfully, but these errors were encountered:
Rdatatable/data.table@a1d8f8b
No branches or pull requests
Minimally reproducible example:
There is a related bug (trivial to fix) there, in the error-reporting line:
here
ncol
andline
are not passed as the varargs, which may result in random data being printed, or occasionally segfaulting.The text was updated successfully, but these errors were encountered: