I have a function that tries to log stuff to the console and also to a log file, but it doesn't work. The second use of the variable length argument gives garbage written to the console. Any ideas?

    void logPrintf(const char *fmt, ...) {
        va_list ap;    // log to logfile
        va_start(ap, fmt);
        logOpen;
        vfprintf(flog, fmt, ap);
        logClose;
        va_end(ap);
        va_list ap2;   // log to console
        va_start(ap2, fmt);
        printf(fmt, ap2);
        va_end(ap2);
    }
link|improve this question
What are you using C or C++ ? – Tony The Lion Feb 16 at 10:10
3  
I have an idea. Don't ever use variadic arguments. – DeadMG Feb 16 at 10:35
feedback

3 Answers

You can't use the same va_list twice, nor get it twice. You have to use va_copy():

va_list ap, ap2;
va_start(ap, fmt);
va_copy(ap2, ap);
// ... with ap
// ... with ap2
va_end(ap2);
va_end(ap);

On some systems, __va_copy() is available instead; you may want to use #ifdef for that. If you use glib, it does that for you using G_VA_COPY().

link|improve this answer
Yes, this. va_lists are very counterintuitive, and implementations vary a lot. It's vitally important to follow the spec: you can get away with, e.g., copying a va_list with = on some platforms, but it'll cause you endless grief on others. The stdarg man page is worth studying. – David Given Feb 16 at 11:31
A va_list may be used twice. But it requires two calls to va_start(), with va_end() in between: – shipr Mar 27 at 21:24
feedback

I think this way makes more sense:

void logPrintf(const char *fmt, ...) {
        va_list ap;    // log to logfile
        va_start(ap, fmt);
        logOpen;
        vfprintf(flog, fmt, ap); //logfile
         printf(fmt, ap); //console
        logClose;
        va_end(ap);
    }
link|improve this answer
Thanks Tony, but that doesn't work either. It's like the pointer gets left at the end of the list so the second use gets garbage. – Neddie Feb 16 at 10:19
Yup, that's exactly what's happening. va_lists are always pass-by-reference. – David Given Feb 16 at 11:33
feedback

Upgrade your compiler, that is more like C++:

template <typename... Args>
void logPrintf(const char *fmt, Args&&... args) {
    logOpen;
    vfprintf(flog, fmt, args...);
    logClose;

    printf(fmt, args...);
}

Though of course it would then be good taste to provide typesafe versions of printf and vprintf.

link|improve this answer
Above example requires C++11. – David Given Feb 16 at 11:32
@DavidGiven: yes (thus the upgrade your compiler). – Matthieu M. Feb 16 at 13:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.