Skip to content

Commit

Permalink
fixes #406
Browse files Browse the repository at this point in the history
Fix segfault caused by referencing uninitialized pointer
in dispatcher module.

(cherry picked from commit b71f6de)
  • Loading branch information
ar45 authored and bogdan-iancu committed Feb 3, 2015
1 parent 3f0b8fe commit d6a0975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dispatcher/dispatch.c
Expand Up @@ -733,7 +733,7 @@ static ds_data_t* ds_load_data(ds_partition_t *partition)
str attrs;
str host;
int port, proto;
db_res_t * res;
db_res_t * res = NULL;
db_val_t * values;
db_row_t * rows;

Expand Down

0 comments on commit d6a0975

Please sign in to comment.