diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-01 09:29:49 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-01 09:29:49 +0000 |
commit | 99a4dbf75cc3f7a40354b6c6596f4ea7aa373c52 (patch) | |
tree | 806a86599b236768bb1742f16d88053d5418d931 /src/xine-engine/scratch.h | |
parent | fa19bf6548378144d233d9cd3b898b98c97f3748 (diff) | |
download | xine-lib-99a4dbf75cc3f7a40354b6c6596f4ea7aa373c52.tar.gz xine-lib-99a4dbf75cc3f7a40354b6c6596f4ea7aa373c52.tar.bz2 |
memleak fixes from ewald snel
CVS patchset: 1535
CVS date: 2002/03/01 09:29:49
Diffstat (limited to 'src/xine-engine/scratch.h')
-rw-r--r-- | src/xine-engine/scratch.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-engine/scratch.h b/src/xine-engine/scratch.h index 770c83fb1..4390641a8 100644 --- a/src/xine-engine/scratch.h +++ b/src/xine-engine/scratch.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: scratch.h,v 1.2 2002/01/16 17:35:34 miguelfreitas Exp $ + * $Id: scratch.h,v 1.3 2002/03/01 09:29:50 guenter Exp $ * * scratch buffer for log output * @@ -36,6 +36,8 @@ struct scratch_buffer_s { char **(*get_content) (scratch_buffer_t *this); + void (*dispose) (scratch_buffer_t *this); + char **lines; char **ordered; |