Browse Source
Merge pull request #453 from rncbc/metadata_property_key_len_fix
[metadata] Fix property key length to notification/callback requests.
tags/v1.9.13
7890
GitHub
6 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
common/JackRequest.h
|
|
|
@@ -1632,7 +1632,7 @@ struct JackClientHasSessionCallbackRequest : public JackRequest |
|
|
|
struct JackPropertyChangeNotifyRequest : public JackRequest |
|
|
|
{ |
|
|
|
jack_uuid_t fSubject; |
|
|
|
char fKey[JACK_UUID_STRING_SIZE]; |
|
|
|
char fKey[MAX_PATH+1]; |
|
|
|
jack_property_change_t fChange; |
|
|
|
|
|
|
|
JackPropertyChangeNotifyRequest() : fChange((jack_property_change_t)0) |
|
|
|
|