From b32a58d4f9f422c1c6920808904f534ebf0dc42b Mon Sep 17 00:00:00 2001 From: Thomas Flueeli Date: Thu, 28 Oct 2010 12:32:11 +0200 Subject: [PATCH 5/5] replace strtoull with g_ascii_strtoull --- src/jingle-share.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/jingle-share.c b/src/jingle-share.c index cf5e545..f4935be 100644 --- a/src/jingle-share.c +++ b/src/jingle-share.c @@ -351,7 +351,7 @@ parse_description (GabbleJingleContent *content, size = lm_message_node_get_attribute (node, "size"); if (size) - m->size = strtoull (size, NULL, 10); + m->size = g_ascii_strtoull (size, NULL, 10); image = lm_message_node_get_child (node, "image"); if (image) -- 1.7.2.3