Skip to content

Commit

Permalink
bumped version to 3.2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Aug 18, 2022
1 parent 4a80ae5 commit da1b041
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### GMime 3.2.13

* Optimized parsing of messages with lots of address headers. (issue #126)

### GMime 3.2.12

* Fixed a memory leak in g_mime_gpgme_get_decrypt_result().
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ AC_PREREQ([2.71])
#
m4_define([gmime_major_version], [3])
m4_define([gmime_minor_version], [2])
m4_define([gmime_micro_version], [12])
m4_define([gmime_interface_age], [4])
m4_define([gmime_micro_version], [13])
m4_define([gmime_interface_age], [0])
m4_define([gmime_binary_age],
[m4_eval(100 * gmime_minor_version + gmime_micro_version)])
m4_define([gmime_version],
Expand Down
2 changes: 1 addition & 1 deletion gmime/internet-address.c
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ domain_literal_parse (GString *str, const char **in)
const char *start = inptr;

while (*inptr && is_dtext (*inptr))
*inptr++;
inptr++;

g_string_append_len (str, start, (size_t) (inptr - start));

Expand Down

0 comments on commit da1b041

Please sign in to comment.