# HG changeset patch # User michael # Date 1142292540 0 # Node ID 10cda832bd0f202361c2fa270acbcfec4fee161a # Parent c30e9bcbb716aeb3c24b85d3ac15d51806dc8957 fix coverity warning CID: 255 (uninitalized variable used to build tables which arent used, well there is a slight change of a FPU exception maybe ...) diff -r c30e9bcbb716 -r 10cda832bd0f wmadec.c --- a/wmadec.c Mon Mar 13 01:27:13 2006 +0000 +++ b/wmadec.c Mon Mar 13 23:29:00 2006 +0000 @@ -222,7 +222,7 @@ float *window; uint8_t *extradata; float bps, bps1; - volatile float high_freq_factor; + volatile float high_freq_factor= 0; //initial value should not matter as the tables build from this are unused if !use_noise_coding int sample_rate1; int coef_vlc_table;