1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2025-04-21 12:27:27 +03:00

Valgrind and gcc -O:

- stralloc_vprintf: used snprintf instead of vsnprintf. Oops !
- build_frames: didn't initialize "n"
- added a few initializations to stop gcc from complaining



git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5382 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner
2009-08-04 07:04:36 +00:00
parent 7674be9b10
commit 3d2748a623
4 changed files with 6 additions and 3 deletions

2
util.c
View File

@@ -29,7 +29,7 @@ char *stralloc_vprintf(const char *fmt, va_list ap)
int n;
va_copy(aq, ap);
n = snprintf(NULL, 0, fmt, aq);
n = vsnprintf(NULL, 0, fmt, aq);
va_end(aq);
buf = alloc_size(n+1);
vsnprintf(buf, n+1, fmt, ap);