forked from rapidsai/cudf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes potential race in JSON parser when parsing JSON lines format an…
…d when recovering from invalid lines (rapidsai#15419) PR adds a missing synchronization before the FST destructor of the FST used for cleaning excess characters following the first valid record on a JSON line. The problem is that the FST's destructor could otherwise free memory that is yet to be used by the still running FST instance. Closes rapidsai#15409 Authors: - Elias Stehle (https://github.com/elstehle) Approvers: - Alessandro Bellina (https://github.com/abellina) - Shruti Shivakumar (https://github.com/shrshi) - Vukasin Milovanovic (https://github.com/vuule) URL: rapidsai#15419
- Loading branch information
Showing
2 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters