Hi,
I had a segfault which seems to be related to an unitialized pointer in
avm_map.h.
This fixes it for me.
Flo
Index: include/avm_map.h
===================================================================
RCS file: /cvsroot/avifile/avifile-0.6/include/avm_map.h,v
retrieving revision 1.7
diff -u -3 -p -r1.7 avm_map.h
--- include/avm_map.h 7 Feb 2002 15:28:38 -0000 1.7
+++ include/avm_map.h 4 Mar 2002 18:28:13 -0000
@@ -31,7 +31,7 @@ protected:
{
Key1 key;
Value1 value;
- pair() {}
+ pair() {key=0; value=0;}
pair(Key1 k, Value1 v) : key(k), value(v) {}
pair(const pair<Key1, Value1>& p) : key(p.key), value(p.value) {}
};