fix scan_to_sa (Tim Lorenz)

This commit is contained in:
leitner 2005-06-08 04:08:18 +00:00
parent 2a209a93c4
commit 0a47d9ea13
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
0.24:
fix scan_to_sa (Tim Lorenz)
0.23:
also recognize EPFNOSUPPORT as EAFNOSUPPORT (groan)

View File

@ -4,10 +4,10 @@
unsigned long scan_to_sa(unsigned long (*func)(const char*,char*,unsigned long*),
const char* src,stralloc* sa) {
unsigned long scanned;
unsigned long written;
unsigned long r;
if (!stralloc_readyplus(sa,str_len(src))) return 0;
if ((r=func(src,sa->s+sa->len,&scanned)))
sa->len+=r;
if ((r=func(src,sa->s+sa->len,&written)))
sa->len+=written;
return r;
}