Re: skalibs: macOS errors

2019-02-05 Thread Laurent Bercot
Hi all - I just wanted to file a quick report. I tried cloning down the skalibs git repo to my macOS box, which uses the default, case-insensitive filesystem. Since there's both mkltemp.c and mkLtemp.c, I immediately ran into problems with git reporting modifications I hand't made, etc. Ah,

skalibs: macOS errors

2019-02-05 Thread John Regan
Hi all - I just wanted to file a quick report. I tried cloning down the skalibs git repo to my macOS box, which uses the default, case-insensitive filesystem. Since there's both mkltemp.c and mkLtemp.c, I immediately ran into problems with git reporting modifications I hand't made, etc.

Re: [PATCH] fix null-pointer behavior in fmt and fmtlist functions

2019-02-05 Thread Laurent Bercot
This fixes a segfault when a user calls uint320_fmt(NULL,...), and makes the fmtlist functions return the correct number of characters when called with NULL. Applied, thanks! -- Laurent

[PATCH] fix null-pointer behavior in fmt and fmtlist functions

2019-02-05 Thread John Regan
This fixes a segfault when a user calls uint320_fmt(NULL,...), and makes the fmtlist functions return the correct number of characters when called with NULL. --- src/libstddjb/fmtscan-internal.h | 23 +++ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git