Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-02-10 | Cast NULL in void * in functions using va_arg | Thomas Preud'homme | 1 | -3/+3 | |
NULL isn't necessary a zero value. For instance, on AMD64 architecture, a null pointer is 0x7fff00000000. Usually things works automagically as the compiler always cast NULL and 0 in void * if stored in a pointer variable. But with functions with variable number of arguments the compiler can't know the type of the arguments and thus don't make the cast. In consequences, NULL and 0 must be cast explicitely in void * if the parameter is a pointer. | |||||
2013-02-10 | Ease distribution of libvformat | Mathias Palm | 1 | -1/+5 | |
* Remove AC_PROG_RANLIB as there is no need for ranlib when libtool is used. * Remove unused AC_CONFIG_FILES. * Remove files generated when testing the library in clean rule. | |||||
2013-02-10 | initial commit of 1.13 sources | Nikias Bassen | 75 | -0/+2362 | |