From: Eli Zaretskii <eliz@gnu.org>
To: Michael Welsh Duggan <mwd@md5i.com>
Cc: mwd@md5i.com, luangruo@yahoo.com, emacs-devel@gnu.org
Subject: Re: Warning in svg_load_image
Date: Thu, 24 Feb 2022 08:47:43 +0200 [thread overview]
Message-ID: <83ilt4squo.fsf@gnu.org> (raw)
In-Reply-To: <8735k9meho.fsf@md5i.com> (message from Michael Welsh Duggan on Wed, 23 Feb 2022 16:58:59 -0500)
> From: Michael Welsh Duggan <mwd@md5i.com>
> Cc: Michael Welsh Duggan <mwd@md5i.com>, luangruo@yahoo.com,
> emacs-devel@gnu.org
> Date: Wed, 23 Feb 2022 16:58:59 -0500
>
> > If the compiler doesn't understand that the value is being limited to
> > a maximum of 5 digits, then it shouldn't attempt to emit such
> > "helpful" warnings.
>
> Is it being limited? What is limiting it? "%5.0f" will not limit it's
> size; it will only limit its minimum size, unless I am misunderstanding
> the printf specs.
That's not the limitation I had in mind, I meant the limitation of the
values printed with those formats:
> if (buffer_size <= snprintf (wrapped_contents, buffer_size, wrapper,
> foreground & 0xFFFFFF, width, height,
> - viewbox_width, viewbox_height,
> + /* Sanitize the viewBox dimensions. */
> + min (max (viewbox_width, 1.), 10000.),
> + min (max (viewbox_height, 1.), 10000.),
> background & 0xFFFFFF,
> SSDATA (encoded_contents)))
Here, it should be clear to the compiler that:
. the #%06X formats cannot produce more than 6 characters each
. the %d formats cannot produce more than 12 characters each
. the %5.0f formats cannot produce more than 5 characters each
> >> The principled way to solve this would be to call the snprintf twice,
> >> the first time with a zero-sized buffer, and then to use the return
> >> value to allocate the actual buffer. This is a pessimisation, but I
> >> don't know if it's a bad one (it depends on how frequently this code
> >> would be called.
> >
> > This is madness. I'd rather we used a pragma to disable that
> > particular warning around this part of the code than jump through
> > hoops because the compiler is too stupid to understand the code it
> > warns about.
>
> Another possible option: you may be able to work around this by
> declaring buffer_size to be volatile.
That'd slow down the code in production, which is not a good idea.
next prev parent reply other threads:[~2022-02-24 6:47 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <87ilt8hcz4.fsf.ref@yahoo.com>
2022-02-21 7:53 ` Warning in svg_load_image Po Lu
2022-02-21 13:26 ` Eli Zaretskii
2022-02-21 13:37 ` Po Lu
2022-02-21 13:51 ` Eli Zaretskii
2022-02-22 3:53 ` Po Lu
2022-02-22 12:32 ` Eli Zaretskii
2022-02-22 12:45 ` Andreas Schwab
2022-02-22 13:02 ` Po Lu
2022-02-23 17:11 ` Michael Welsh Duggan
2022-02-23 17:37 ` Eli Zaretskii
2022-02-23 21:58 ` Michael Welsh Duggan
2022-02-24 6:47 ` Eli Zaretskii [this message]
2022-02-23 22:55 ` Andreas Schwab
2022-02-24 6:53 ` Eli Zaretskii
[not found] ` <87pmndmrsz.fsf@md5i.com>
2022-02-24 0:50 ` Po Lu
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=83ilt4squo.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=emacs-devel@gnu.org \
--cc=luangruo@yahoo.com \
--cc=mwd@md5i.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.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.