We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug There's an out-of-bounds memory access that is observed when reading in .zip files that are less than, approximately 64KB in size.
.zip
Steps/Code to reproduce bug
wget http://data.gdeltproject.org/gdeltv2/20210513074500.export.CSV.zip
import cudf filename = '20210513074500.export.CSV.zip' dfs = cudf.read_csv(filename, header=None, sep='\t')
Expected behavior Data is read into cudf.
The text was updated successfully, but these errors were encountered:
Thanks @elstehle I was able to verify this is a bug. @harrism do you think this is an issue on the libcudf side ?
Sorry, something went wrong.
@quasiben thanks for verifying. I have investigated the issue and put up a PR which should fix this: #8498
Fixes out-of-bounds access for small files in unzip (#8498)
46c13c1
This PR fixes #8497. Authors: - Elias Stehle (https://github.com/elstehle) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) - David Wendt (https://github.com/davidwendt) - Charles Blackmon-Luca (https://github.com/charlesbluca) - Vukasin Milovanovic (https://github.com/vuule) URL: #8498
elstehle
Successfully merging a pull request may close this issue.
Describe the bug
There's an out-of-bounds memory access that is observed when reading in
.zip
files that are less than, approximately 64KB in size.Steps/Code to reproduce bug
Expected behavior
Data is read into cudf.
The text was updated successfully, but these errors were encountered: