Skip to content

Commit

Permalink
Merge branch 'mdev-worker' into testing
Browse files Browse the repository at this point in the history
  • Loading branch information
wipawel committed Jan 20, 2015
2 parents 364bf4e + dc076e3 commit 3d53025
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,7 @@ void
ni_ifworker_array_append(ni_ifworker_array_t *array, ni_ifworker_t *w)
{
array->data = realloc(array->data, (array->count + 1) * sizeof(array->data[0]));
array->data[array->count++] = w;
w->refcount++;
array->data[array->count++] = ni_ifworker_get(w);
}

int
Expand Down

0 comments on commit 3d53025

Please sign in to comment.