]> granicus.if.org Git - postgresql/commit
Currently, contrib/oid2name doesn't bother to free() the memory that it
authorBruce Momjian <bruce@momjian.us>
Tue, 5 Mar 2002 05:54:07 +0000 (05:54 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 5 Mar 2002 05:54:07 +0000 (05:54 +0000)
commit66cd6a0fb2711b9656d5c3872f7a673b70a82818
treef8998aaec9f41eca9178f7d2e6f98775f7ed9fad
parenta8bd7e1c6e026678019b2f25cffc0a94ce62b24b
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
contrib/oid2name/oid2name.c