aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-02-24 00:15:41 -0500
committerMike Frysinger <vapier@gentoo.org>2015-02-24 13:29:40 -0500
commitba7d2c543f7d69883ece7eab39bf6c5cd5dc3081 (patch)
treeaa48200bc313424adc098d68b2104c5abc45bf5a /ChangeLog
parent9438b237abca11de201dd10483717299eafb1f0b (diff)
downloadglibc-ba7d2c543f7d69883ece7eab39bf6c5cd5dc3081.tar
glibc-ba7d2c543f7d69883ece7eab39bf6c5cd5dc3081.tar.gz
glibc-ba7d2c543f7d69883ece7eab39bf6c5cd5dc3081.tar.bz2
glibc-ba7d2c543f7d69883ece7eab39bf6c5cd5dc3081.zip
alloca: fix buf interaction
The stack-grows-down case is missing paren around the buf cast. The stack-grows-up case is missing a cast with the buf assignment. This leads to build failures due to -Werror: vfprintf.c: In function '_IO_vfprintf_internal': vfprintf.c:1738:16: error: initialization from incompatible pointer type [-Werror]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ae6cf1f56..b8da862dc2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-02-24 Mike Frysinger <vapier@gentoo.org>
+
+ * include/alloca.h [_STACK_GROWS_DOWN] (extend_alloca): Add
+ parenthesis around the buf assignment.
+ [_STACK_GROWS_UP] (extend_alloca): Add a char* cast.
+
2015-02-24 Joseph Myers <joseph@codesourcery.com>
[BZ #16783]