Use jack_free instead of free in inprocess.c.

This commit is contained in:
Stephane Letz 2014-06-03 13:06:12 +02:00
parent 4813f1b5c3
commit 2e6344a32b
1 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ jack_initialize (jack_client_t *client, const char *load_init)
fprintf (stderr, "cannot connect input ports\n");
}
free (ports);
jack_free (ports);
ports = jack_get_ports (client, NULL, NULL,
JackPortIsPhysical|JackPortIsInput);
@ -102,7 +102,7 @@ jack_initialize (jack_client_t *client, const char *load_init)
fprintf (stderr, "cannot connect output ports\n");
}
free (ports);
jack_free (ports);
return 0; /* success */
}