Apply fix for CVE-2008-2371 to fix a heap-based buffer overflow.

* glib/pcre/pcre_compile.c: Apply fix for CVE-2008-2371 to
        fix a heap-based buffer overflow.



svn path=/trunk/; revision=7123
This commit is contained in:
Matthias Clasen 2008-07-01 03:27:14 +00:00
parent 64770f4b0e
commit f869b1f693
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-06-30 Matthias Clasen <mclasen@redhat.com>
* glib/pcre/pcre_compile.c: Apply fix for CVE-2008-2371 to
fix a heap-based buffer overflow.
2008-06-29 Björn Lindqvist <bjourne@gmail.com>
Bug 539626 Update docstrings for g_object_freeze_notify and

View File

@ -4807,7 +4807,7 @@ we set the flag only if there is a literal "\r" or "\n" in the class. */
(lengthptr == NULL || *lengthptr == 2 + 2*LINK_SIZE))
{
cd->external_options = newoptions;
options = newoptions;
options = *optionsptr = newoptions;
}
else
{