changed prototype of
authorMarc Cromme <marc@indexdata.dk>
Tue, 24 Apr 2007 22:17:05 +0000 (22:17 +0000)
committerMarc Cromme <marc@indexdata.dk>
Tue, 24 Apr 2007 22:17:05 +0000 (22:17 +0000)
commit70cdb5e208e33b88f2a95e45c36605753de4edd5
tree2089b72aedd51f8acb6e353a50be6208daa8d063
parent3ce61c3b5cc0d80fa8d095662ef7a5d1ed13c387
changed prototype of
union data_types * data_types_assign(NMEM nmem,
                                     union data_types * data1,
                                     union data_types data2)
to
union data_types * data_types_assign(NMEM nmem,
                                     union data_types ** data1,
                                     union data_types data2)
to make sure that side effects are transmitted outside.
added tests for side effects.
added code for proper initialization of
record->metadata[i] and record->sortkeys[i] - valgrind my your friend!
src/record.c
src/record.h
src/test_record.c