aboutsummaryrefslogtreecommitdiffhomepage
path: root/mimedb.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 01:37:30 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 01:37:30 -0800
commitd975187433ed71120d603ab2815d11b9c80ae8be (patch)
tree790a1644dfb643b06bdd9b04d009bf5023141c33 /mimedb.cpp
parent910863e9ea5e1a4db192b5be1630d125cff18485 (diff)
Removed some al_list functions
Diffstat (limited to 'mimedb.cpp')
-rw-r--r--mimedb.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/mimedb.cpp b/mimedb.cpp
index dcc1aa8a..cc02d3a0 100644
--- a/mimedb.cpp
+++ b/mimedb.cpp
@@ -1198,25 +1198,6 @@ static void launch( char *filter, const string_list_t &files, int fileno )
}
/**
- Clean up one entry from the hash table of launch files
-*/
-static void clear_entry( void *key, void *val )
-{
- /*
- The key is a mime value, either from the libraries internal hash
- table of mime types or from the command line. Either way, it
- should not be freed.
-
- The value is an array_list_t of filenames. The filenames com from
- the argument list and should not be freed. The arraylist,
- however, should be destroyed and freed.
- */
- array_list_t *l = (array_list_t *)val;
- al_destroy( l );
- free( l );
-}
-
-/**
Do locale specific init
*/
static void locale_init()