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:
312030b
)
fixed compiler warning about uninitialized variable.
author
kramm
<kramm>
Thu, 7 Aug 2003 10:30:02 +0000
(10:30 +0000)
committer
kramm
<kramm>
Thu, 7 Aug 2003 10:30:02 +0000
(10:30 +0000)
lib/modules/swfsound.c
patch
|
blob
|
history
diff --git
a/lib/modules/swfsound.c
b/lib/modules/swfsound.c
index
dec1fe9
..
af1ef7e
100644
(file)
--- a/
lib/modules/swfsound.c
+++ b/
lib/modules/swfsound.c
@@
-143,7
+143,7
@@
void swf_SetSoundStreamBlock(TAG*tag, S16*samples, int seek, char first)
int len = 0;
int bufsize = 16384;
int numsamples = 576*(swf_mp3_in_samplerate/swf_mp3_out_samplerate);
- int fs;
+ int fs = 0;
buf = malloc(bufsize);
if(!buf)