summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stardict.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/stardict.c b/stardict.c
index 3e1fd55..471ab62 100644
--- a/stardict.c
+++ b/stardict.c
@@ -822,10 +822,13 @@ read_entry (gchar type, const gchar **entry_iterator,
GString *data = g_string_new (NULL);
if (is_final)
+ {
g_string_append_len (data, entry, end - entry);
+ entry += end - entry;
+ }
else
{
- gchar c;
+ gint c = EOF;
while (entry < end && (c = *entry++))
g_string_append_c (data, c);
@@ -860,7 +863,7 @@ read_entry (gchar type, const gchar **entry_iterator,
sef->type = type;
sef->data_size = length;
sef->data = memcpy (g_malloc (length), entry, length);
- *entry_iterator = entry;
+ *entry_iterator = entry + length;
return sef;
}