Changeset 234f47e in mainline for uspace/srv/ns/task.c


Ignore:
Timestamp:
2016-07-08T10:58:34Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8ef1c1e
Parents:
659ebd86
git-author:
Manuele Conti <conti.manuele@…> (2016-07-08 10:58:34)
git-committer:
Jakub Jermar <jakub@…> (2016-07-08 10:58:34)
Message:

ns: Fix memory leak in ns_task_id_intro()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/ns/task.c

    r659ebd86 r234f47e  
    242242       
    243243        hashed_task_t *ht = (hashed_task_t *) malloc(sizeof(hashed_task_t));
    244         if (ht == NULL)
     244        if (ht == NULL) {
     245                free(entry);
    245246                return ENOMEM;
     247        }
    246248       
    247249        /*
Note: See TracChangeset for help on using the changeset viewer.