Add assert to CSV parser and explain its condition
Coverity Scan has found a possible bug in a CSV parser - dereferencing of a null pointer. But it is not possible. Lets explain: According to Coverity, the null dereference is in CSV_IN_QUOTES processing in csv_parse_impl. But bufp (nullified pointer) can be set to null only in two cases: CSV_NEWFIELD and CSV_OUT_OF_QUOTES. In a case of CSV_NEWFIELD the parser sets the state to CSV_LEADING_SPACES and on a next iteration it sets bufp to not null. In a case of CSV_OUT_OF_QUOTES the parser can nullify bufp only if is_end_of_line was true at the end of 'out_of_quotes' processing. But it means, that is_end_of_line was true at the beginning of processing too, because CSV_OUT_OF_QUOTES does not modify it. And at the beggining, if is_end_of_line was true, then the state is set to CSV_LEADING_SPACES. And on a next iteration bufp are set to not null. Closes #2692
Please register or sign in to comment