no longer free the cookie inside the driver

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7111 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
beveloper
2004-03-29 23:48:38 +00:00
parent 40d8df50ed
commit ce9f8277a1
@@ -44,9 +44,6 @@ ichaudio_attach(drv_t *drv, void *_cookie)
dprintf("ichaudio_attach\n");
return B_OK;
err:
free(cookie);
return B_OK;
}
@@ -58,7 +55,6 @@ ichaudio_detach(drv_t *drv, void *_cookie)
dprintf("ichaudio_detach\n");
free(cookie);
return B_OK;
}