Skip to content

Commit

Permalink
Update qlibc to v2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wolkykim committed Dec 16, 2015
1 parent 916fc5a commit 40768e1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/qlibc
Submodule qlibc updated 348 files
2 changes: 1 addition & 1 deletion src/ad_http_handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ size_t ad_http_send_header(ad_conn_t *conn) {
http->request.httpver, http->response.code, reason);

// Send headers.
qdlnobj_t obj;
qlisttbl_obj_t obj;
bzero((void*) &obj, sizeof(obj));
qlisttbl_t *tbl = http->response.headers;
tbl->lock(tbl);
Expand Down
4 changes: 2 additions & 2 deletions src/ad_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -799,8 +799,8 @@ static int call_hooks(short event, ad_conn_t *conn) {
DEBUG("call_hooks: event 0x%x", event);
qlist_t *hooks = conn->server->hooks;

qdlobj_t obj;
bzero((void *)&obj, sizeof(qdlobj_t));
qlist_obj_t obj;
bzero((void *)&obj, sizeof(qlist_obj_t));
while (hooks->getnext(hooks, &obj, false) == true) {
ad_hook_t *hook = (ad_hook_t *)obj.data;
if (hook->cb) {
Expand Down

1 comment on commit 40768e1

@kakwa
Copy link

@kakwa kakwa commented on 40768e1 Dec 16, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you ^^

Please sign in to comment.