From: Serge Petrenko <sergepetrenko@tarantool.org>
To: alexander.turenko@tarantool.org
Cc: tarantool-patches@dev.tarantool.org
Subject: [Tarantool-patches] [PATCH] Add const qualifier to mp_encode_ext argument
Date: Sat, 4 Apr 2020 02:01:58 +0300 [thread overview]
Message-ID: <20200403230158.43137-1-sergepetrenko@tarantool.org> (raw)
---
This is a fix needed in scope of tarantool#4268 (UUID type indices introduction)
https://github.com/tarantool/tarantool/issues/4268
https://github.com/tarantool/msgpuck/tree/sp/ext-type-fix
msgpuck.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/msgpuck.h b/msgpuck.h
index 59fc1ee..5dfbbd9 100644
--- a/msgpuck.h
+++ b/msgpuck.h
@@ -570,7 +570,7 @@ mp_encode_extl(char *data, int8_t type, uint32_t len);
* \sa mp_encode_strl
*/
MP_PROTO char *
-mp_encode_ext(char *data, int8_t type, char *str, uint32_t len);
+mp_encode_ext(char *data, int8_t type, const char *str, uint32_t len);
/**
* \brief Check that \a cur buffer has enough bytes to decode an ext header.
@@ -1577,7 +1577,7 @@ mp_encode_extl(char *data, int8_t type, uint32_t len)
}
MP_IMPL char *
-mp_encode_ext(char *data, int8_t type, char *str, uint32_t len)
+mp_encode_ext(char *data, int8_t type, const char *str, uint32_t len)
{
data = mp_encode_extl(data, type, len);
memcpy(data, str, len);
--
2.21.1 (Apple Git-122.3)
next reply other threads:[~2020-04-03 23:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-03 23:01 Serge Petrenko [this message]
2020-04-05 19:38 ` Vladislav Shpilevoy
2020-04-08 17:01 ` Alexander Turenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200403230158.43137-1-sergepetrenko@tarantool.org \
--to=sergepetrenko@tarantool.org \
--cc=alexander.turenko@tarantool.org \
--cc=tarantool-patches@dev.tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH] Add const qualifier to mp_encode_ext argument' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox