diff options
| author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-05 14:45:41 +0200 | 
|---|---|---|
| committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-04-05 16:03:07 +0200 | 
| commit | 7ba8e234b6c45774b54d24e632cb14730a62b0b3 (patch) | |
| tree | 8bcbb8e43cab5855d57c03ece5bcd9192a2a6aa4 /src/ipcpd/normal/pol | |
| parent | 901a97a2a51ece0fd9991797b9764f60268962b3 (diff) | |
| download | ouroboros-7ba8e234b6c45774b54d24e632cb14730a62b0b3.tar.gz ouroboros-7ba8e234b6c45774b54d24e632cb14730a62b0b3.zip | |
ipcpd: normal: Add missing else clause
A missing else clause was missing in the fast path, causing the PCI to
be shrunk when it should not be. A double free has also been fixed.
Diffstat (limited to 'src/ipcpd/normal/pol')
| -rw-r--r-- | src/ipcpd/normal/pol/complete.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/ipcpd/normal/pol/complete.c b/src/ipcpd/normal/pol/complete.c index 1f3f6031..6c0be9ec 100644 --- a/src/ipcpd/normal/pol/complete.c +++ b/src/ipcpd/normal/pol/complete.c @@ -89,7 +89,7 @@ static void * allocator(void * o)          /* FIXME: subscribe to members to keep the graph complete. */          len = rib_children("/" MEMBERS_NAME, &children);          for (i = 0; i < len; ++i) { -                if (strcmp(children[i], ipcpi.name) < 0) { +                if (strcmp(children[i], ipcpi.name) != 0) {                          if (connmgr_alloc(complete->ae,                                            children[i],                                            &qs, | 
