Commit 731c9fa5 authored by Warren Dukes's avatar Warren Dukes

don't to an unneccessary sort

git-svn-id: https://svn.musicpd.org/mpd/trunk@2674 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 209cab26
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
#include "mpd_types.h" #include "mpd_types.h"
#include "sig_handlers.h" #include "sig_handlers.h"
#include "player.h" #include "player.h"
#include "tagTracker.h"
#include "list.h" #include "list.h"
#include "dbUtils.h" #include "dbUtils.h"
...@@ -1001,8 +1000,6 @@ int writeDirectoryDB() { ...@@ -1001,8 +1000,6 @@ int writeDirectoryDB() {
while(fclose(fp) && errno==EINTR); while(fclose(fp) && errno==EINTR);
sortTagTrackerInfo();
return 0; return 0;
} }
...@@ -1093,8 +1090,6 @@ int readDirectoryDB() { ...@@ -1093,8 +1090,6 @@ int readDirectoryDB() {
if(stat(directory_db,&st)==0) directory_dbModTime = st.st_mtime; if(stat(directory_db,&st)==0) directory_dbModTime = st.st_mtime;
sortTagTrackerInfo();
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment