Navigation Menu

Skip to content

Commit

Permalink
Fix missing initialization of a pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
daijiro committed Aug 14, 2012
1 parent f9035f7 commit e25f65f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/db.c
Expand Up @@ -550,6 +550,7 @@ grn_proc_create(grn_ctx *ctx, const char *name, unsigned int name_size, grn_proc
res->funcs[PROC_INIT] = init;
res->funcs[PROC_NEXT] = next;
res->funcs[PROC_FIN] = fin;
res->selector = NULL;
GRN_TEXT_INIT(&res->name_buf, 0);
res->vars = NULL;
res->nvars = 0;
Expand Down

0 comments on commit e25f65f

Please sign in to comment.