Re: [PATCH] mmap()->sys_mmap2: do unsigned shift of offset

2012-05-21 Thread Mike Frysinger
On Friday 18 May 2012 22:09:46 Mike Frysinger wrote: > On Thursday 17 May 2012 07:47:11 James Hogan wrote: > > Is it always correct to cast __off_t to __u_long? I'm a bit unclear > > whether it's still correct on 64bit architectures or with long file > > support. > > this isn't mmap64 (which uses

Re: [PATCH 1/2] Revert "Makerules: respect HARDWIRED_ABSPATH in interp.c"

2012-05-21 Thread Mike Frysinger
On Friday 18 May 2012 23:54:39 Mike Frysinger wrote: > On Thursday 17 May 2012 09:18:29 Sedat Dilek wrote: > > This reverts commit 5dffed7dd1a413f3965af702fa7ecd79809d1988. > > > > This breaks ldd when HARDWIRED_ABSPATH=n. > > > > [1] http://lists.uclibc.org/pipermail/uclibc/2011-March/045048.htm

Re: [RFC/PATCH v2] stdio: implement assignment-allocation "m" character

2012-05-21 Thread Mike Frysinger
On Sunday 06 May 2012 04:13:55 Mike Frysinger wrote: > The latest POSIX spec introduces a "m" character to allocate buffers for > the user when using scanf type functions. This is like the old glibc "a" > flag, but now standardized. With packages starting to use these, we need > to implement it.