• Show log

    Commit

  • Hash : 3a7f7a6e
    Author : Patrick Steinhardt
    Date : 2017-05-31T14:43:46

    config_file: pass reader directly to callbacks
    
    Previously, the callbacks passed to `config_parse` got the reader via a
    pointer to a pointer. This allowed the callbacks to update the callers
    `reader` variable when the array holding it has been reallocated. As the
    array is no longer present, we can simply the code by making the reader
    a simple pointer.