Skip to content

Commit d9b2f41

Browse files
author
Clement Champetier
committed
avprocessor app: fix conditional jump which depends on uninitialised value
1 parent 8e5b9ef commit d9b2f41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/avProcessor/avProcessor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void parseConfigFile(const std::string& configFilename, avtranscoder::Transcoder
2828

2929
std::stringstream ss(streamId);
3030
size_t streamIndex = 0;
31-
char separator;
31+
char separator = 'x';
3232
std::vector<size_t> channelIndexArray;
3333
ss >> streamIndex;
3434
ss >> separator;

0 commit comments

Comments
 (0)