Changeset 150 for trunk/lib/range_list.c


Ignore:
Timestamp:
03/01/09 21:17:46 (15 years ago)
Author:
tim
Message:

integrated talloc into most of the rest of the regfi library
fixed a length validation issue

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/range_list.c

    r148 r150  
    143143void range_list_free(range_list* rl)
    144144{
    145   if(rl == NULL)
    146     return;
    147 
    148   talloc_free(rl);
     145  if(rl != NULL)
     146    talloc_free(rl);
    149147}
    150148
Note: See TracChangeset for help on using the changeset viewer.