diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-07-04 17:31:36 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-07-04 17:31:36 +0000 |
commit | 84a0194e85ba38085d6b68e6b1e89b24151c6918 (patch) | |
tree | c667fe387e10c4381173682af694aff2dd9c21b0 /mdk-stage1 | |
parent | 2a3bfd70cf2799f8b195dd0a39be83c898a8fc14 (diff) | |
download | drakx-84a0194e85ba38085d6b68e6b1e89b24151c6918.tar drakx-84a0194e85ba38085d6b68e6b1e89b24151c6918.tar.gz drakx-84a0194e85ba38085d6b68e6b1e89b24151c6918.tar.bz2 drakx-84a0194e85ba38085d6b68e6b1e89b24151c6918.tar.xz drakx-84a0194e85ba38085d6b68e6b1e89b24151c6918.zip |
very nice things happen when you hardcode arrays to a too small value
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/newt-frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/newt-frontend.c b/mdk-stage1/newt-frontend.c index 1d5c1e4d6..b3a858f27 100644 --- a/mdk-stage1/newt-frontend.c +++ b/mdk-stage1/newt-frontend.c @@ -168,7 +168,7 @@ void end_progression(void) enum return_type ask_from_list_comments(char *msg, char ** elems, char ** elems_comments, char ** choice) { - char * items[50]; + char * items[500]; int answer = 0, rc; char ** sav_elems = elems; int i; |