From: "Clément Poulain" <clement.poulain@ensimag.imag.fr>
To: Junio C Hamano <gitster@pobox.com>
Cc: <git@vger.kernel.org>
Subject: Re: [PATCH v2 2/3] textconv: support for blame
Date: Tue, 15 Jun 2010 11:29:57 +0200 [thread overview]
Message-ID: <0091febb4a3832a6680a0fbc2209f841@ensimag.fr> (raw)
In-Reply-To: <7vfx0p9wlm.fsf@alter.siamese.dyndns.org>
On Mon, 14 Jun 2010 13:40:21 -0700, Junio C Hamano <gitster@pobox.com>
wrote:
> Axel Bonnet <axel.bonnet@ensimag.imag.fr> writes:
>
>> @@ -86,16 +87,49 @@ struct origin {
>> ...
>> +static void fill_origin_blob(struct diff_options *opt,
>> + struct origin *o, mmfile_t *file)
>> {
>> if (!o->file.ptr) {
>> enum object_type type;
>> num_read_blob++;
>> - file->ptr = read_sha1_file(o->blob_sha1, &type,
>> - (unsigned long *)(&(file->size)));
>> +
>> + if (DIFF_OPT_TST(opt, ALLOW_TEXTCONV) &&
>> + textconv_object(o->path, o->blob_sha1, &file->ptr,
>> + (size_t *) &file->size))
>
> This cast is not correct, as there is no guarantee that your size_t and
> typeof(mmfile_t.size) are compatible. Depending on the gcc version, you
> would get "dereferencing type-punned pointer will break strict-aliasing
> rules" error.
>
> The same issue exists in Clément's patch to builtin/cat-file.c.
We did this way because we found a similar cast in prep_temp_blob(),
diff.c:
if (convert_to_working_tree(path,
(const char *)blob, (size_t)size, &buf)) {
where size is an unsigned long.
Is it the same issue ? Or is it different because it's not a pointer cast?
Otherwise, we thought of reversing the conversion. That is to say, instead
of casting "long *" in "size_t *" when calling textconv_object(), is it
better to cast size_t in "unsigned long" in textconv_object():
*buf_size = (unsigned long) fill_textconv(textconv, df, buf); ?
next prev parent reply other threads:[~2010-06-15 9:30 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-07 14:41 [PATCH v2 0/3] textconv support for blame Axel Bonnet
2010-06-07 15:23 ` [PATCH v2 1/3] textconv: make the API public Axel Bonnet
2010-06-07 15:23 ` [PATCH v2 2/3] textconv: support for blame Axel Bonnet
2010-06-07 15:23 ` [PATCH v2 3/3] t/t8006: test textconv " Axel Bonnet
2010-06-11 23:52 ` Junio C Hamano
2010-06-14 7:52 ` Diane Gasselin
2010-06-11 23:52 ` [PATCH v2 2/3] textconv: " Junio C Hamano
2010-06-12 4:11 ` Jeff King
2010-06-14 20:40 ` Junio C Hamano
2010-06-15 9:29 ` Clément Poulain [this message]
2010-06-15 9:54 ` Jeff King
2010-06-15 10:32 ` bonneta
2010-06-15 10:51 ` Matthieu Moy
[not found] ` <aad13a73928536f87879ef7284d6cc75@ensimag.fr>
2010-06-15 11:07 ` Jeff King
2010-06-15 12:13 ` bonneta
2010-06-15 15:00 ` Junio C Hamano
2010-06-15 13:58 ` Axel Bonnet
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=0091febb4a3832a6680a0fbc2209f841@ensimag.fr \
--to=clement.poulain@ensimag.imag.fr \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).