diff options
| author | Tom Lane | 1999-05-31 22:53:59 +0000 |
|---|---|---|
| committer | Tom Lane | 1999-05-31 22:53:59 +0000 |
| commit | 2a44383a2d38ac4655e419cb8c2c654efe960285 (patch) | |
| tree | 50662e0c6009c7cd08ef0f2fbb04807754c837b4 /src/include | |
| parent | 81ced1e037f5fede768549e56e7ec8a5c48b7844 (diff) | |
Clean up memory leaks in LO operations by freeing LO's private
memory context at transaction commit or abort.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/libpq/be-fsstubs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/libpq/be-fsstubs.h b/src/include/libpq/be-fsstubs.h index c1d0054f28b..beaddbc0b3f 100644 --- a/src/include/libpq/be-fsstubs.h +++ b/src/include/libpq/be-fsstubs.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: be-fsstubs.h,v 1.8 1999/02/13 23:21:34 momjian Exp $ + * $Id: be-fsstubs.h,v 1.9 1999/05/31 22:53:58 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -40,6 +40,6 @@ extern int lowrite(int fd, struct varlena * wbuf); /* * Added for buffer leak prevention [ Pascal André <andre@via.ecp.fr> ] */ -extern void _lo_commit(void); +extern void lo_commit(bool isCommit); #endif /* BE_FSSTUBS_H */ |
