Message65246
| Author |
belopolsky |
| Recipients |
amaury.forgeotdarc, belopolsky, jnferguson |
| Date |
2008年04月09日.17:54:16 |
| SpamBayes Score |
0.32850865 |
| Marked as misclassified |
No |
| Message-id |
<d38f5330804091054w5a837572i7233073afbcc1732@mail.gmail.com> |
| In-reply-to |
<1207761391.61.0.745995657786.issue2588@psf.upfronthosting.co.za> |
| Content |
On Wed, Apr 9, 2008 at 1:16 PM, Justin Ferguson <report@bugs.python.org> wrote:
..
> That said, theres plenty of other implementations that manage this
> without the potential of underflowing a buffer
>
Do you have in mind something like the following?
===================================================================
--- Python/mysnprintf.c (revision 62211)
+++ Python/mysnprintf.c (working copy)
@@ -88,6 +88,7 @@
PyMem_FREE(buffer);
Done:
#endif
- str[size-1] = '0円';
+ if (size > 0)
+ str[size-1] = '0円';
return len;
}
I would be +0 on such change. |
|