Skip to content

Commit

Permalink
Merge remote-tracking branch 'core/engine-pu' into mengine
Browse files Browse the repository at this point in the history
* core/engine-pu:
  Initialize mutex object for listen_state
  • Loading branch information
dustin committed May 3, 2011
2 parents 04fedf1 + 5b4120a commit 6b3e533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon/memcached.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ struct {
bool disabled;
ssize_t count;
uint64_t num_disable;
} listen_state;
} listen_state = { .mutex = PTHREAD_MUTEX_INITIALIZER };

static bool is_listen_disabled(void) {
bool ret;
Expand Down

0 comments on commit 6b3e533

Please sign in to comment.