Hopefully fixed memory problem which causes sigabrt on free

This commit is contained in:
Thomas Schmitt 2006-10-15 19:26:22 +00:00
parent cb42e2fcd9
commit fdfc4ebf36
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ int libdax_audioxtr_new(struct libdax_audioxtr **xtr, char *path, int flag)
int ret;
struct libdax_audioxtr *o;
o= *xtr= (struct libdax_audioxtr *)malloc(sizeof(struct libdax_audioxtr *));
o= *xtr= (struct libdax_audioxtr *) malloc(sizeof(struct libdax_audioxtr));
if(o==NULL)
return(-1);
strncpy(o->path,path,LIBDAX_AUDIOXTR_STRLEN-1);