From: Vladislav Shpilevoy via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: imeevma@tarantool.org Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH v1 1/1] sql: fix a segfault in hex() on receiving zeroblob Date: Thu, 26 Aug 2021 22:31:53 +0200 [thread overview] Message-ID: <781509c4-6531-1f3b-0ff2-cc95a4bf489c@tarantool.org> (raw) In-Reply-To: <866533cf6634609e69fdf734fd2a124361117a5f.1629976189.git.imeevma@gmail.com> Thanks for the patch! > diff --git a/src/box/sql/func.c b/src/box/sql/func.c > index b137c6125..d182bb313 100644 > --- a/src/box/sql/func.c > +++ b/src/box/sql/func.c > @@ -1221,14 +1221,22 @@ hexFunc(sql_context * context, int argc, sql_value ** argv) > UNUSED_PARAMETER(argc); > pBlob = mem_as_bin(argv[0]); > n = mem_len_unsafe(argv[0]); > + assert((argv[0]->flags & MEM_Zero) == 0 || > + argv[0]->type == MEM_TYPE_BIN); > + int zero_len = (argv[0]->flags & MEM_Zero) == 0 ? 0 : argv[0]->u.nZero; > assert(pBlob == mem_as_bin(argv[0])); /* No encoding change */ > z = zHex = contextMalloc(context, ((i64) n) * 2 + 1); > if (zHex) { > - for (i = 0; i < n; i++, pBlob++) { > + for (i = 0; i < n - zero_len; i++, pBlob++) { > unsigned char c = *pBlob; > *(z++) = hexdigits[(c >> 4) & 0xf]; > *(z++) = hexdigits[c & 0xf]; > } > + for (; i < n; ++i) { > + assert((argv[0]->flags & MEM_Zero) != 0); 1. This assert can be out of the loop. It does not depend on z or i. 2. The loop could be replaced with memset(). > + *(z++) = '0'; > + *(z++) = '0'; > + }
next prev parent reply other threads:[~2021-08-26 20:31 UTC|newest] Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-08-26 11:10 Mergen Imeev via Tarantool-patches 2021-08-26 20:31 ` Vladislav Shpilevoy via Tarantool-patches [this message] 2021-08-27 7:54 ` Mergen Imeev via Tarantool-patches 2021-08-27 21:52 ` Vladislav Shpilevoy via Tarantool-patches 2021-08-26 11:11 Mergen Imeev via Tarantool-patches 2021-08-26 20:42 ` Vladislav Shpilevoy via Tarantool-patches 2021-08-27 8:26 ` Mergen Imeev via Tarantool-patches 2021-08-27 21:31 ` Vladislav Shpilevoy via Tarantool-patches 2021-08-30 6:20 Mergen Imeev via Tarantool-patches 2021-09-03 19:20 ` Safin Timur via Tarantool-patches 2021-08-30 6:30 Mergen Imeev via Tarantool-patches 2021-08-31 19:32 ` Timur Safin via Tarantool-patches 2021-09-01 8:44 ` Mergen Imeev via Tarantool-patches 2021-09-03 19:19 ` Safin Timur via Tarantool-patches 2021-09-06 9:45 ` Mergen Imeev via Tarantool-patches 2021-09-06 20:32 ` Safin Timur via Tarantool-patches 2021-09-07 9:16 ` Mergen Imeev via Tarantool-patches 2021-10-05 12:49 Mergen Imeev via Tarantool-patches
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=781509c4-6531-1f3b-0ff2-cc95a4bf489c@tarantool.org \ --to=tarantool-patches@dev.tarantool.org \ --cc=imeevma@tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v1 1/1] sql: fix a segfault in hex() on receiving zeroblob' \ /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