Navigation Menu

Skip to content

Commit

Permalink
groonga-httpd: add missing flag intialization
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 7, 2015
1 parent 99dc6bf commit 996d3b1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/httpd/nginx-module/ngx_http_groonga_module.c
Expand Up @@ -351,6 +351,7 @@ ngx_http_groonga_grn_obj_to_ngx_buf(ngx_pool_t *pool, grn_obj *object)
buffer->pos = (u_char *)GRN_TEXT_VALUE(object);
buffer->last = (u_char *)GRN_TEXT_VALUE(object) + GRN_TEXT_LEN(object);
buffer->memory = 1; /* this buffer is in memory */
buffer->in_file = 0;

return buffer;
}
Expand Down

0 comments on commit 996d3b1

Please sign in to comment.