diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-11-25 18:39:11 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-11-25 18:39:11 +0000 |
commit | 9ed00818d7351ca5bcb4ba16b5dfe900d45831d5 (patch) | |
tree | 1aa0a3e2656c78a5543d5c44adfd7835ca67e9d2 /protocols/twitter/twitter_lib.c | |
parent | 29f72b7a4b4fa960b6fccb45243fa3f5d87a99bf (diff) |
Fixed one potential memory leak, and re-remembered that for GLib + valgrind
you REALLY need to set G_SLICE=always-malloc. Argh!
Diffstat (limited to 'protocols/twitter/twitter_lib.c')
-rw-r--r-- | protocols/twitter/twitter_lib.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/protocols/twitter/twitter_lib.c b/protocols/twitter/twitter_lib.c index b888a730..fe276133 100644 --- a/protocols/twitter/twitter_lib.c +++ b/protocols/twitter/twitter_lib.c @@ -270,7 +270,6 @@ static gboolean twitter_xt_get_friends_id_list(json_value *node, struct twitter_ txl->list = g_slist_prepend(txl->list, g_strdup_printf("%lld", c->u.array.values[i]->u.integer)); - } c = json_o_get(node, "next_cursor"); |