1. 04 Sep, 2017 3 commits
  2. 03 Sep, 2017 7 commits
  3. 02 Sep, 2017 11 commits
  4. 01 Sep, 2017 3 commits
  5. 31 Aug, 2017 4 commits
  6. 30 Aug, 2017 7 commits
  7. 29 Aug, 2017 4 commits
  8. 28 Aug, 2017 1 commit
    • Dan Fandrich's avatar
      asyn-thread: Fixed cleanup after OOM · df29455d
      Dan Fandrich authored
      destroy_async_data() assumes that if the flag "done" is not set yet, the
      thread itself will clean up once the request is complete.  But if an
      error (generally OOM) occurs before the thread even has a chance to
      start, it will never get a chance to clean up and memory will be leaked.
      By clearing "done" only just before starting the thread, the correct
      cleanup sequence will happen in all cases.
      df29455d