diff options
author | Andreas Schwab <schwab@suse.de> | 2018-09-27 11:12:13 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2018-09-27 12:31:03 +0200 |
commit | f841c97e515a1673485a2b12b3c280073d737890 (patch) | |
tree | 67decd1b815cb83bcee1fd064fe298a8e9b99c77 /ChangeLog | |
parent | 6ca8284e7a522ce3cdc9fdd2e73795c753890634 (diff) | |
download | glibc-f841c97e515a1673485a2b12b3c280073d737890.tar glibc-f841c97e515a1673485a2b12b3c280073d737890.tar.gz glibc-f841c97e515a1673485a2b12b3c280073d737890.tar.bz2 glibc-f841c97e515a1673485a2b12b3c280073d737890.zip |
Fix stack overflow in tst-setcontext9 (bug 23717)
The function f1a, executed on a stack of size 32k, allocates an object of
size 32k on the stack. Make the stack variables static to reduce
excessive stack usage.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2018-09-27 Andreas Schwab <schwab@suse.de> + + [BZ #23717] + * stdlib/tst-setcontext9.c (f1a): Make st2 static. + (do_test): Make st1 static. + 2018-09-26 Andreas Schwab <schwab@suse.de> [BZ #23707] |