diff options
| author | Quentin Young <qlyoung@users.noreply.github.com> | 2018-08-13 14:56:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-13 14:56:56 -0400 |
| commit | cd22c8ca74597aa27cb11dd28b613d53c0a36abe (patch) | |
| tree | 3e51217c34b49df896e84bf63f80d65a5c5a270d /lib/workqueue.c | |
| parent | 5487152318c7f56867a027f7214c849f6fb23e5c (diff) | |
| parent | e8c8f2e064c674d1c0935aaf04091c97e117c62f (diff) | |
Merge pull request #2820 from opensourcerouting/err-prep
remove alloc return value checks + minor babeld cleanup
Diffstat (limited to 'lib/workqueue.c')
| -rw-r--r-- | lib/workqueue.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/workqueue.c b/lib/workqueue.c index 39dd142afb..c927d5d714 100644 --- a/lib/workqueue.c +++ b/lib/workqueue.c @@ -81,9 +81,6 @@ struct work_queue *work_queue_new(struct thread_master *m, new = XCALLOC(MTYPE_WORK_QUEUE, sizeof(struct work_queue)); - if (new == NULL) - return new; - new->name = XSTRDUP(MTYPE_WORK_QUEUE_NAME, queue_name); new->master = m; SET_FLAG(new->flags, WQ_UNPLUGGED); @@ -152,10 +149,7 @@ void work_queue_add(struct work_queue *wq, void *data) assert(wq); - if (!(item = work_queue_item_new(wq))) { - zlog_err("%s: unable to get new queue item", __func__); - return; - } + item = work_queue_item_new(wq); item->data = data; work_queue_item_enqueue(wq, item); |
