git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
548ae10
)
fixed a mem leak
author
kramm
<kramm>
Sat, 4 Jun 2005 07:10:40 +0000
(07:10 +0000)
committer
kramm
<kramm>
Sat, 4 Jun 2005 07:10:40 +0000
(07:10 +0000)
pdf2swf/swfoutput.cc
patch
|
blob
|
history
diff --git
a/pdf2swf/swfoutput.cc
b/pdf2swf/swfoutput.cc
index
179d9ed
..
f14507b
100644
(file)
--- a/
pdf2swf/swfoutput.cc
+++ b/
pdf2swf/swfoutput.cc
@@
-1545,6
+1545,7
@@
void swfresult_destroy(gfxresult_t*gfx)
gfx->internal = 0;
}
memset(gfx, 0, sizeof(gfxresult_t));
+ free(gfx);
}
static void swfoutput_destroy(gfxdevice_t* dev);