Changeset 5b08d750 in mainline for uspace/srv/devman/devman.c


Ignore:
Timestamp:
2013-09-10T12:45:35Z (11 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
041b026, 4cdcd2b
Parents:
54dee316
Message:

free_not_null is no longer needed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/devman.c

    r54dee316 r5b08d750  
    728728        assert(drv != NULL);
    729729
    730         free_not_null(drv->name);
    731         free_not_null(drv->binary_path);
     730        free(drv->name);
     731        free(drv->binary_path);
    732732
    733733        clean_match_ids(&drv->match_ids);
     
    11791179       
    11801180        clean_match_ids(&fun->match_ids);
    1181         free_not_null(fun->name);
    1182         free_not_null(fun->pathname);
     1181        free(fun->name);
     1182        free(fun->pathname);
    11831183        free(fun);
    11841184}
Note: See TracChangeset for help on using the changeset viewer.