Thread: pgAdmin3.cpp bug?

pgAdmin3.cpp bug?

From
"Adam H. Pendleton"
Date:
At line 284 of pgAdmin3.cpp, the code reads:

    return 1;

        // Keith 2003.03.05
        // We must delete this after cleanup to prevent memory leaks
    delete logger;
}

Unless I am missing something, doesn't the "return 1" prevent the
"delete logger" code from ever being called?  And, according to the
comment, it seems like code that ought the run.

ahp