diff options
Diffstat (limited to 'src/ipcpd/normal')
| -rw-r--r-- | src/ipcpd/normal/fmgr.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/ipcpd/normal/fmgr.c b/src/ipcpd/normal/fmgr.c index fc1342a9..9a72eda2 100644 --- a/src/ipcpd/normal/fmgr.c +++ b/src/ipcpd/normal/fmgr.c @@ -229,7 +229,7 @@ int fmgr_init()          for (i = 0; i < QOS_CUBE_MAX; ++i) {                  fmgr.np1_set[i] = flow_set_create(); -                if (fmgr.np1_set == NULL) { +                if (fmgr.np1_set[i] == NULL) {                          fmgr_destroy_flows();                          return -1;                  } @@ -241,7 +241,7 @@ int fmgr_init()                  }                  fmgr.nm1_set[i] = flow_set_create(); -                if (fmgr.nm1_set == NULL) { +                if (fmgr.nm1_set[i] == NULL) {                          fmgr_destroy_flows();                          return -1;                  } | 
