* PQfreemem - safely frees memory allocated * * Needed mostly by Win32, unless multithreaded DLL (/MD in VC6) * Used for freeing memory from PQescapeBytea()/PQunescapeBytea() */
| 3832 | * Used for freeing memory from PQescapeBytea()/PQunescapeBytea() |
| 3833 | */ |
| 3834 | void |
| 3835 | PQfreemem(void *ptr) |
| 3836 | { |
| 3837 | free(ptr); |
| 3838 | } |
| 3839 | |
| 3840 | /* |
| 3841 | * PQfreeNotify - free's the memory associated with a PGnotify |
no outgoing calls