• Show log

    Commit

  • Hash : 83c93a7c
    Author : Patrick Steinhardt
    Date : 2016-04-01T09:37:55

    merge_driver: fix missing `goto done;`
    
    The code initializing the merge driver registry accidentally
    forgot a `goto done` in case of an error. Because of this the
    next line, which registers the global shutdown callback for the
    merge drivers, is only called when an error occured.
    
    Fix this by adding the missing `goto done`. This fixes some
    memory leaks when the global state is shut down.