* src/table.c (scute_table_dealloc): Return, but not a value.
@@ -1,3 +1,7 @@
+2007-04-30 Marcus Brinkmann <marcus@g10code.de>
+
+ * src/table.c (scute_table_dealloc): Return, but not a value.
2007-02-09 Marcus Brinkmann <marcus@g10code.de>
* src/pkcs11.h: Add definitions for SHA.
@@ -229,7 +229,7 @@ scute_table_dealloc (scute_table_t table, int *index)
void *data = NULL;
if (idx == INDEX_EOT)
- return NULL;
+ return;
assert (idx >= 0 && idx < table->last_used);
assert (table->data[idx] != NULL);