pgsql/contrib/oid2name oid2name.c

Поиск
Список
Период
Сортировка
От momjian@postgresql.org (Bruce Momjian - CVS)
Тема pgsql/contrib/oid2name oid2name.c
Дата
Msg-id 20020305055408.DE5974764D4@postgresql.org
обсуждение исходный текст
Список pgsql-committers
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    momjian@postgresql.org    02/03/05 00:54:07

Modified files:
    contrib/oid2name: oid2name.c

Log message:
    Currently, contrib/oid2name doesn't bother to free() the memory that it
    malloc()'s. This isn't too serious (because oid2name is a short-lived
    utility, so the memory will soon be returned to the OS on process
    termination), but I still think it's poor style.

    This patch changes oid2name so that it allocates memory on the stack
    where possible and free()s the remaining heap-allocated memory. The
    patch also fixes a typo a comment and adds 'const' qualifiers to a few
    'char *' function parameters.

    Neil Conway


В списке pgsql-committers по дате отправления:

Предыдущее
От: momjian@postgresql.org (Bruce Momjian - CVS)
Дата:
Сообщение: pgsql/ /configure /configure.in oc/README.mb.j ...
Следующее
От: momjian@postgresql.org (Bruce Momjian - CVS)
Дата:
Сообщение: pgsql/src/interfaces/libpq fe-exec.c fe-misc.c ...