diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2003-10-05 12:15:39 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2003-10-05 12:15:39 +0000 |
commit | 96f09305d6345236220a4c705688c63210b5b890 (patch) | |
tree | 91c7b12097efb44c27c6c200739ad7bc00296140 /src/frame.c | |
parent | c1f0671ae91a1259334de1d4785413a29e63bbff (diff) | |
download | emacs-96f09305d6345236220a4c705688c63210b5b890.tar.gz emacs-96f09305d6345236220a4c705688c63210b5b890.tar.bz2 emacs-96f09305d6345236220a4c705688c63210b5b890.zip |
Fix memory leaks (from YAMAMOTO Mitsuharu)
Diffstat (limited to 'src/frame.c')
-rw-r--r-- | src/frame.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c index 17952b5ca16..87175e0c6c9 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1279,6 +1279,8 @@ The functions are run with one arg, the frame to be deleted. */) if (f->namebuf) xfree (f->namebuf); + if (f->decode_mode_spec_buffer) + xfree (f->decode_mode_spec_buffer); if (FRAME_INSERT_COST (f)) xfree (FRAME_INSERT_COST (f)); if (FRAME_DELETEN_COST (f)) |