Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Commit

Permalink
Supress warning on uninitialized memory in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Turner committed Sep 17, 2013
1 parent d649524 commit 5596422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/proxy.test.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void *recipient(void *p) {
}

void *proxy(void *ptr) {
nitro_socket_t *outs[2];
nitro_socket_t *outs[2] = {0, 0};
nitro_socket_t *inp = NULL;

nitro_sockopt_t *opt = nitro_sockopt_new();
Expand Down

0 comments on commit 5596422

Please sign in to comment.