use jack_free instead of free

This commit is contained in:
Volker Fischer 2015-07-04 07:56:53 +00:00
parent a46ea26cd8
commit 066d8abfaa
1 changed files with 2 additions and 4 deletions

View File

@ -125,8 +125,7 @@ void CSound::OpenJack()
}
}
// TODO shouldn't we call jack_free() function instead?
free ( ports );
jack_free ( ports );
}
// try to connect physical output ports
@ -154,8 +153,7 @@ void CSound::OpenJack()
}
}
// TODO shouldn't we call jack_free() function instead?
free ( ports );
jack_free ( ports );
}
}