Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2013-05-26 17:58:33 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-06-23 17:27:42 +0400
commit4b55c5fad5ef93099d5f11f2b9319d9837e843c9 (patch)
treed0b1f19a0efce788f31ed1fb721ea6612fad4253 /src/filters/parser
parent336d3dd2cc7bf2c4d790bc7237315652f4ca065d (diff)
Fix the C4701 warnings: Potentially uninitialized local variable "XXX" used.
Diffstat (limited to 'src/filters/parser')
-rw-r--r--src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp b/src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp
index 5737a58fb..ec7f83fde 100644
--- a/src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp
+++ b/src/filters/parser/BaseSplitter/BaseSplitterFileEx.cpp
@@ -1138,9 +1138,9 @@ bool CBaseSplitterFileEx::Read(mlphdr& h, int len, CMediaType* pmt, bool find_sy
__int64 startpos = GetPos();
- int samplerate, channels, framelength;
- WORD bitdepth;
- bool isTrueHD;
+ int samplerate = 0, channels = 0, framelength = 0;
+ WORD bitdepth = 0;
+ bool isTrueHD = false;
int fsize = 0;
BYTE buf[20];