fmt_xlonglong was utterly broken (Johannes Vetter)

This commit is contained in:
leitner 2007-08-01 00:10:37 +00:00
parent f28b0ee6b2
commit 3c31c1a03b
3 changed files with 18 additions and 7 deletions

View File

@ -8,6 +8,7 @@
use inttypes.h to declare ints in uint*.h use inttypes.h to declare ints in uint*.h
escape more in fmt_ldapescape escape more in fmt_ldapescape
try to catch malicious input in textcode fmt_* functions try to catch malicious input in textcode fmt_* functions
fmt_xlonglong was utterly broken (Johannes Vetter)
0.25: 0.25:
array_allocate no longer truncates the array array_allocate no longer truncates the array

View File

@ -1,10 +1,17 @@
#include "fmt.h" #include "fmt.h"
size_t fmt_xlonglong(char *dest,unsigned long long i) { static inline char tohex(char c) {
int tmp=0; return c>=10?c-10+'a':c+'0';
if (i>>32) { }
tmp=fmt_xlong(dest,i>>32);
if (dest) dest+=tmp; size_t fmt_xlonglong(char *dest,unsigned long long i) {
} unsigned long long len,tmp;
return tmp+fmt_xlong(dest,i&0xffffffff); /* first count the number of bytes needed */
for (len=1, tmp=i; tmp>15; ++len) tmp>>=4;
if (dest)
for (tmp=i, dest+=len; ; ) {
*--dest = tohex(tmp&15);
if (!(tmp>>=4)) break;
}
return len;
} }

View File

@ -2,6 +2,7 @@
#include <str.h> #include <str.h>
#include <assert.h> #include <assert.h>
#include <scan.h> #include <scan.h>
#include <byte.h>
int main() { int main() {
char buf[1024]; char buf[1024];
@ -25,5 +26,7 @@ int main() {
assert(fmt_longlong(buf,-1234567890)==11); buf[11]=0; assert(fmt_longlong(buf,-1234567890)==11); buf[11]=0;
assert(str_equal(buf,"-1234567890")); assert(str_equal(buf,"-1234567890"));
assert(scan_longlong(buf,&l)==11); assert(l==-1234567890); assert(scan_longlong(buf,&l)==11); assert(l==-1234567890);
assert(fmt_xlonglong(buf,0x8000000000000000)==16 && byte_equal(buf,16,"8000000000000000"));
return 0; return 0;
} }