mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
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:
parent
64770f4b0e
commit
f869b1f693
@ -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
|
||||
|
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user