Author: dcreager
Date: Sat Oct 15 13:24:14 2011
New Revision: 1183632
URL: http://svn.apache.org/viewvc?rev=1183632&view=rev
Log:
AVRO-928. Debug statement no longer reports garbage from stack
Modified:
avro/trunk/CHANGES.txt
avro/trunk/lang/c/src/resolved-writer.c
Modified: avro/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=1183632&r1=1183631&r2=1183632&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Sat Oct 15 13:24:14 2011
@@ -159,6 +159,9 @@ Avro 1.6.0 (unreleased)
AVRO-869. Lifetimes of streams and encoder/decoders not managed propertly.
(thiru)
+ AVRO-928. Debug statement no longer reports garbage value from
+ stack. (Vivek Nadkarni via dcreager)
+
Avro 1.5.4 (12 September 2011)
IMPROVEMENTS
Modified: avro/trunk/lang/c/src/resolved-writer.c
URL:
http://svn.apache.org/viewvc/avro/trunk/lang/c/src/resolved-writer.c?rev=1183632&r1=1183631&r2=1183632&view=diff
==============================================================================
--- avro/trunk/lang/c/src/resolved-writer.c (original)
+++ avro/trunk/lang/c/src/resolved-writer.c Sat Oct 15 13:24:14 2011
@@ -2233,7 +2233,7 @@ avro_resolved_record_writer_get_by_index
const avro_resolved_record_value_t *self = vself;
avro_value_t dest;
- DEBUG("Getting writer field %zu from record %p", index, dest.self);
+ DEBUG("Getting writer field %zu from record %p", index, self);
if (riface->field_resolvers[index] == NULL) {
DEBUG("Reader doesn't have field, skipping");
child->iface = NULL;