Blame SOURCES/bc-1.06.95-matlib.patch

4ed832
diff -urNp bc-1.06.95-orig/bc/storage.c bc-1.06.95/bc/storage.c
4ed832
--- bc-1.06.95-orig/bc/storage.c	2006-09-05 04:39:31.000000000 +0200
4ed832
+++ bc-1.06.95/bc/storage.c	2010-12-22 10:26:43.805250912 +0100
4ed832
@@ -99,6 +99,7 @@ more_functions (VOID)
4ed832
     {
4ed832
       f = &functions[indx];
4ed832
       f->f_defined = FALSE;
4ed832
+      f->f_void = FALSE;
4ed832
       f->f_body = (char *) bc_malloc (BC_START_SIZE);
4ed832
       f->f_body_size = BC_START_SIZE;
4ed832
       f->f_code_size = 0;
4ed832
@@ -179,7 +180,7 @@ more_arrays ()
4ed832
 
4ed832
 
4ed832
   /* Initialize the new elements. */
4ed832
-  for (; indx < v_count; indx++)
4ed832
+  for (; indx < a_count; indx++)
4ed832
     arrays[indx] = NULL;
4ed832
 
4ed832
   /* Free the old elements. */