GNOME Bugzilla – Bug 168110
Cannot compile libgnome on Alpha or amd64
Last modified: 2005-03-01 13:48:48 UTC
Please describe the problem: The recent change in libgnome-2.8.2's gnome-program.c to initialize args to 0, then pass it to gnome_program_init_common() breaks compilation on FreeBSD am64 and Alpha (at least). I have a feeling the same will be true on RedHat Alpha. Steps to reproduce: 1. Try to compile libgnome-2.8.2 or HEAD on FreeBSD amd64 or alpha. 2. 3. Actual results: The compilation aborts complaining argument 8 to gnome_program_init_common() is not of the right type. Expected results: The compilation should succeed. Does this happen every time? Yes. Other information: The fix is to revert the initialize fix. That is, if va_list args is left uninitialized, the compilation succeeds on all tested architectures. However, the better solution is probably to pass the va_list argument as a pointer or do some ifdef checking to properly set the argument for architecture on which libgnome is being compiled.
I was afraid this was going to happen. The first fix made it produce a whole bunch of uninitialized memory warnings from valgrind so I wanted to fix those... Can someone point to a solution that will fix this for all archs?
This works for me on amd64 va_list args = {};
Please try the solution in bug #168387 *** This bug has been marked as a duplicate of 168387 ***