1 Description: Fix array initialization bug
4 Bug-Debian: http://bugs.debian.org/586969
5 Bug-Debian: http://bugs.debian.org/671513
7 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
9 ===================================================================
10 --- bc.orig/bc/storage.c 2013-06-02 20:34:09.401273864 -0400
11 +++ bc/bc/storage.c 2013-06-02 20:34:11.000000000 -0400
15 /* Initialize the new elements. */
16 - for (; indx < v_count; indx++)
17 + for (; indx < a_count; indx++)
20 /* Free the old elements. */