* Eliminate generic_free_handler() since it is not needed
[citadel.git] / libcitadel / lib / hash.c
index ac6a377ff16ff188a62d2bfc9bea993b8ac63042..684dc466de08889b505ed8b7fa7f0dce82d6e486 100644 (file)
@@ -955,15 +955,6 @@ void SortByPayload(HashList *Hash, CompareFunc SortBy)
  */
 
 
-/*
- * Generic function to free a pointer.  This can be used as a callback with the
- * hash table, even on systems where free() is defined as a macro or has had other
- * horrible things done to it.
- */
-void generic_free_handler(void *ptr) {
-       free(ptr);
-}
-
 /*
  * Generic function to free a reference.  
  * since a reference actualy isn't needed to be freed, do nothing.