mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-23 16:20:03 +01:00
fix leaks in bio2jack
This commit is contained in:
@@ -2486,6 +2486,16 @@ JACK_SetClientName(char *name)
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
JACK_FreeClientName()
|
||||
{
|
||||
if( client_name ) {
|
||||
free(client_name);
|
||||
client_name = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
long JACK_OutputStatus(int deviceID,long *sec, long *usec)
|
||||
{
|
||||
jack_driver_t *this = &outDev[deviceID];
|
||||
|
||||
Reference in New Issue
Block a user