Hi
It seems that in error case ecl_read_object_with_delimiter try to use
uninitialized var i
I think right code must be:

*** src\c\read.d        Wed Feb 15 18:03:30 2012
--- src\c\read.d.old    Wed Feb 15 17:57:55 2012
*************** BEGIN:
*** 207,213 ****
                  }
                  unlikely_if (the_env->nvalues > 1) {
                          FEerror("The readmacro ~S returned ~D values.",
!                                 2, x, MAKE_FIXNUM(the_env->nvalues));
                  }
                  return o;
          }
--- 207,213 ----
                  }
                  unlikely_if (the_env->nvalues > 1) {
                          FEerror("The readmacro ~S returned ~D values.",
!                                 2, x, MAKE_FIXNUM(i));
                  }
                  return o;
          }

------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Ecls-list mailing list
Ecls-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecls-list

Reply via email to