From d54f87d7c47ebdff0f2e5bd5afa06e99f15f6821 Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Thu, 22 Sep 2011 22:38:57 +1100 Subject: [PATCH] = fixed missing handler call --- src/json2torrent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json2torrent.c b/src/json2torrent.c index 0bf3e60..3ebe3c8 100644 --- a/src/json2torrent.c +++ b/src/json2torrent.c @@ -50,7 +50,7 @@ yajl_callbacks callbacks = { NULL, /* number */ write_string, /* string */ write_dict_start, /* start map */ - NULL, /* map key */ + write_string, /* map key */ write_end, /* end map */ write_list_start, /* start array */ write_end /* end array */