clean-up works now FossilOrigin-Name: b748ddb215a807c4634de1492c35aadfd4df7054b43bf73627b3ee67b224e0aa
17 lines
240 B
C
17 lines
240 B
C
|
|
#include <stdlib.h>
|
|
|
|
|
|
#include "ktv.h"
|
|
|
|
void cw_ktv_mavldel(void *data)
|
|
{
|
|
struct cw_KTV *ktv = data;
|
|
/*printf("KTV Del Key,Type: %s %s\n", ktv->key,ktv->type->name);*/
|
|
if (ktv->type->del){
|
|
ktv->type->del(data);
|
|
}
|
|
|
|
free(ktv->key);
|
|
}
|