From 07b3150cb1c3a028a0b2631f6a1aa6605372a99a Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Mon, 17 Aug 2015 11:38:08 +0100 Subject: common: constify some declarations Signed-off-by: Frediano Ziglio Acked-by: Jonathon Jongsma --- common/marshaller.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'common/marshaller.c') diff --git a/common/marshaller.c b/common/marshaller.c index c967371..c1d208e 100644 --- a/common/marshaller.c +++ b/common/marshaller.c @@ -347,9 +347,12 @@ uint8_t *spice_marshaller_add(SpiceMarshaller *m, const uint8_t *data, size_t si return ptr; } -uint8_t *spice_marshaller_add_ref(SpiceMarshaller *m, uint8_t *data, size_t size) +uint8_t *spice_marshaller_add_ref(SpiceMarshaller *m, const uint8_t *data, size_t size) { - return spice_marshaller_add_ref_full(m, data, size, NULL, NULL); + /* the cast to no-const here is safe as data is used for writing only if + * free_data pointer is not NULL + */ + return spice_marshaller_add_ref_full(m, (uint8_t *) data, size, NULL, NULL); } void spice_marshaller_add_ref_chunks(SpiceMarshaller *m, SpiceChunks *chunks) -- cgit