Hi!
I'm using jansson in a multithreaded program on an embedded arm-system.
This system is build with "buildroot" using bussybox and uclibc.
When using the construction below I get heap corruption and use a different aproach at the moment.
Is there anybody else experiencing this problem?
Any solution?
I would like to reinstate the varargs approach.
va_list ap;
va_start(ap, fmt);
obj = json_vpack_ex(NULL, 0, fmt, ap);
va_end(ap);
// Martin