diff PrivateHash.c @ 21:4b5abed39ab9

changed names in comments, to avoid repeats during global replace
author Some Random Person <seanhalle@yahoo.com>
date Fri, 09 Mar 2012 22:17:44 -0800
parents 774396bc53b4
children ac99f4a8ce22
line diff
     1.1 --- a/PrivateHash.c	Mon Feb 13 10:31:17 2012 -0800
     1.2 +++ b/PrivateHash.c	Fri Mar 09 22:17:44 2012 -0800
     1.3 @@ -229,14 +229,14 @@
     1.4   {
     1.5     if( entry->content != NULL )
     1.6        (*(table->freeEntryContentFn))( entry->content );
     1.7 -   VMS_int__free( entry->key ); //was VMS__malloc'd above, so free it
     1.8 +   VMS_int__free( entry->key ); //was VMS_int__malloc'd above, so free it
     1.9     VMS_int__free( entry );
    1.10   }
    1.11  
    1.12  void
    1.13  freeHashEntryButNotContent( HashEntry *entry )
    1.14   {
    1.15 -   VMS_int__free( entry->key ); //was VMS__malloc'd above, so free it
    1.16 +   VMS_int__free( entry->key ); //was VMS_int__malloc'd above, so free it
    1.17     VMS_int__free( entry );
    1.18   }
    1.19