From f5f7dc7e08a004beba3a99976125426b5686de8a Mon Sep 17 00:00:00 2001 From: rncbc Date: Mon, 8 Apr 2019 17:13:34 +0100 Subject: [PATCH] [metadata] Fix property key length to notification/callback requests. --- common/JackRequest.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/JackRequest.h b/common/JackRequest.h index 8665ff87..2025bdc3 100644 --- a/common/JackRequest.h +++ b/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)