Обсуждение: pgAdmin3.cpp bug?

Поиск
Список
Период
Сортировка

pgAdmin3.cpp bug?

От
"Adam H. Pendleton"
Дата:
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