diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-09-09 17:40:06 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-09-09 17:45:23 +0000 |
commit | 28ef54953b35475a1ee3814b4d32b17685976fc2 (patch) | |
tree | 5c5e06b29cf1a826c4d8fd3afab120d86696df1d /main/bc/bc-1.06.95-void_uninitialized.patch | |
parent | ea2ae6eb2d732e7e2530b6a04c1519c9c9b9a057 (diff) | |
download | aports-28ef54953b35475a1ee3814b4d32b17685976fc2.tar.bz2 aports-28ef54953b35475a1ee3814b4d32b17685976fc2.tar.xz |
main/bc: upgrade to 1.06.95
Diffstat (limited to 'main/bc/bc-1.06.95-void_uninitialized.patch')
-rw-r--r-- | main/bc/bc-1.06.95-void_uninitialized.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/main/bc/bc-1.06.95-void_uninitialized.patch b/main/bc/bc-1.06.95-void_uninitialized.patch new file mode 100644 index 0000000000..c591f782a8 --- /dev/null +++ b/main/bc/bc-1.06.95-void_uninitialized.patch @@ -0,0 +1,13 @@ +http://www.pixelbeat.org/programming/oss_bug_flow.html +https://bugs.gentoo.org/349339 + +--- ./bc/storage.c ++++ ./bc/storage.c +@@ -99,6 +99,7 @@ + { + f = &functions[indx]; + f->f_defined = FALSE; ++ f->f_void = FALSE; + f->f_body = (char *) bc_malloc (BC_START_SIZE); + f->f_body_size = BC_START_SIZE; + f->f_code_size = 0; |