Re: [U-Boot] [PATCH v6 0/4] Buffer overruns in printf

2011-12-17 Thread Wolfgang Denk
Dear Simon Glass, In message you wrote: > > Is this series going into this month's release? No. This goes into "next". Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

Re: [U-Boot] [PATCH v6 0/4] Buffer overruns in printf

2011-12-14 Thread Simon Glass
Hi Wolfgang, On Mon, Nov 21, 2011 at 12:43 PM, Simon Glass wrote: > Hi, > > On Wed, Nov 2, 2011 at 12:52 PM, Simon Glass wrote: >> The printf family of functions in U-Boot cannot deal with a situation where >> the caller provides a buffer which turns out to be too small for the format >> string.

Re: [U-Boot] [PATCH v6 0/4] Buffer overruns in printf

2011-11-21 Thread Simon Glass
Hi, On Wed, Nov 2, 2011 at 12:52 PM, Simon Glass wrote: > The printf family of functions in U-Boot cannot deal with a situation where > the caller provides a buffer which turns out to be too small for the format > string. This can result in buffer overflows, stack overflows and other bad > behavi

[U-Boot] [PATCH v6 0/4] Buffer overruns in printf

2011-11-02 Thread Simon Glass
The printf family of functions in U-Boot cannot deal with a situation where the caller provides a buffer which turns out to be too small for the format string. This can result in buffer overflows, stack overflows and other bad behavior. This patch series tidies this up in the common vsprintf.c cod