• Show log

    Commit

  • Hash : 6562cdda
    Author : Patrick Steinhardt
    Date : 2018-10-11T12:43:08

    object: properly propagate errors on parsing failures
    
    When failing to parse a raw object fromits data, we free the
    partially parsed object but then fail to propagate the error to the
    caller. This may lead callers to operate on objects with invalid memory,
    which will sooner or later cause the program to segfault.
    
    Fix the issue by passing up the error code returned by `parse_raw`.