Skip to content

Commit b4c8d28

Browse files
authored
Fix compiler warning about possibly uninitialized variable (false positive) (#847)
Fixes #846
1 parent ca0c6df commit b4c8d28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liboslexec/lpeparse.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Parser::buildStop(LPexp *etype, LPexp *scatter, const std::list<LPexp*> &custom)
106106
LPexp *
107107
Parser::parseSymbol()
108108
{
109-
bool iscustom;
109+
bool iscustom = false;
110110
ustring sym = parseRawSymbol(iscustom);
111111
if (m_ingroup) {
112112
if (sym == udot)

0 commit comments

Comments
 (0)