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:
5507aab
)
fixed two bugs in font2swf
author
Matthias Kramm
<kramm@quiss.org>
Thu, 2 Apr 2009 14:06:02 +0000
(16:06 +0200)
committer
Matthias Kramm
<kramm@quiss.org>
Thu, 2 Apr 2009 14:06:02 +0000
(16:06 +0200)
src/font2swf.c
patch
|
blob
|
history
diff --git
a/src/font2swf.c
b/src/font2swf.c
index
8107a8f
..
36ac40b
100644
(file)
--- a/
src/font2swf.c
+++ b/
src/font2swf.c
@@
-56,7
+56,7
@@
int args_callback_option(char*name,char*val)
}
else if(!strcmp(name, "n")) {
fontname = val;
- return 0;
+ return 1;
}
else if(!strcmp(name, "a")) {
all = 1;
@@
-101,7
+101,7
@@
static void convertFont(char*infile, char*outfile)
font = swf_LoadFont(infile);
if(fontname)
- font->name = fontname;
+ font->name = strdup(fontname);
swf_WriteFont(font, outfile);
swf_FontFree(font);