From: Leonid Krivoshein <klark.devel@gmail.com>
To: devel@lists.altlinux.org
Subject: Re: [devel] memcpy глючит (или я не умею его готовить)
Date: Fri, 22 Feb 2019 22:27:56 +0300
Message-ID: <42f17a50-affe-4c54-99ad-88502a65854f@gmail.com> (raw)
In-Reply-To: <20190221132501.GQ10173@altlinux.org>
21.02.2019 16:25, Alexey V. Vissarionov пишет:
> On 2019-02-21 16:17:07 +0300, Paul Wolneykien wrote:
>
> > Коллеги, прошу помощи разбором одной проблемы. Предполагаю,
> > что это какая-то очевидная ошибка: то ли я действительно не
> > умею готовить memcpy(), то ли где-то в программе есть ошибки
> > при работе с памятью, которые влияют косвенно (может в данном
> > случае такое быть?).
> > Итак, у меня есть вот такой код
>
> >> 1460 if (_data.size % 2 && _data.data[8] == 0x04) {
>
> (_data.size % 2) лично я поменял бы на (_data.size & 0x01)
Да, так на порядок быстрее.
> >> 1461 // Uncompressed point (the first 8 bytes is the UKM)
> >> 1462 memcpy (_data.data + 8, _data.data + 9, _data.size - 9);
> >> 1463 _data.size--;
> >> 1464 }
>
> Наверняка какая-нибудь грабля с выравниванием...
Тут ко всему не очевидное поведение компилятора при работе с адресами,
когда их складывают с целыми (много от чего зависит и в ряде случаев
просто на ворнинги можно нарваться). Такой код в любом случае сразу
переписывать на более безопасный, независимо от memcpy()/memmove().
Например, так:
memmove(&_data.data[8], &data.data[9], _data.size - 9); /* если тип
данных [unsigned] char */
--
Best regards,
Leonid Krivoshein.
next prev parent reply other threads:[~2019-02-22 19:27 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-21 13:17 Paul Wolneykien
2019-02-21 13:22 ` Vladimir Didenko
2019-02-21 13:28 ` Paul Wolneykien
2019-02-21 13:25 ` Alexey V. Vissarionov
2019-02-22 19:27 ` Leonid Krivoshein [this message]
2019-02-22 20:51 ` Vladimir Didenko
2019-02-22 22:48 ` Leonid Krivoshein
2019-02-23 1:21 ` Mikhail Efremov
2019-02-23 12:28 ` Leonid Krivoshein
2019-02-23 12:55 ` Alexey V. Vissarionov
2019-02-23 13:08 ` Leonid Krivoshein
2019-02-23 14:46 ` Alexey Tourbin
2019-02-23 15:02 ` Leonid Krivoshein
2019-02-24 11:06 ` Mikhail Efremov
2019-02-24 16:22 ` [devel] gcc pointer arithmetics Dmitry V. Levin
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=42f17a50-affe-4c54-99ad-88502a65854f@gmail.com \
--to=klark.devel@gmail.com \
--cc=devel@lists.altlinux.org \
/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
ALT Linux Team development discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
public-inbox-index devel
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.devel
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git