1. 09 Oct, 2008 38 commits
  2. 08 Oct, 2008 2 commits
    • Max Kellermann's avatar
      directory: fix update in root directory · 22645abc
      Max Kellermann authored
      Commit 0bfe7802 broke update for new files in the root directory,
      because music_root->path was an empty string and not NULL.  There were
      some NULL tests missing.  Change them to !isRootDirectory(path)
      instead of path!=NULL.
      22645abc
    • Max Kellermann's avatar
      update: fix deadlock in delete_song() · e8413541
      Max Kellermann authored
      Due to a merge error, reap_update_task() called cond_signal_async()
      with a locked mutex.  That always fails.  Use cond_signal_sync()
      instead.
      e8413541