HomeSort by relevance Sort by last modified time
    Searched full:new_common (Results 1 - 1 of 1) sorted by null

  /external/libsepol/src/
expand.c 305 common_datum_t *common, *new_common; local
315 new_common = (common_datum_t *) malloc(sizeof(common_datum_t));
316 if (!new_common) {
320 memset(new_common, 0, sizeof(common_datum_t));
321 if (symtab_init(&new_common->permissions, PERM_SYMTAB_SIZE)) {
323 free(new_common);
330 /* free memory created by symtab_init first, then free new_common */
331 symtab_destroy(&new_common->permissions);
332 free(new_common);
336 new_common->s.value = common->s.value
    [all...]

Completed in 60 milliseconds