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
parent
commit
84bc8f8e68
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/JackRequest.h

+ 1
- 1
common/JackRequest.h View File

@@ -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)


Loading…
Cancel
Save