Browse Source

prevent crash if UUID for client is not found

tags/0.124.0
Paul Davis 11 years ago
parent
commit
2633e4ff51
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      property.c

+ 1
- 1
property.c View File

@@ -42,7 +42,7 @@ get_subject (jack_client_t* client, char* argv[], int* optind)

if ((ustr = jack_get_uuid_for_client_name (client, cstr)) == NULL) {
fprintf (stderr, "cannot get UUID for client named %s\n", cstr);
return -1;
}
if (jack_uuid_parse (ustr, uuid)) {


Loading…
Cancel
Save