mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Merge pull request #8019 from edolstra/fix-read-from-stdin
Fix another uninitialized variable
This commit is contained in:
commit
c44750982d
1 changed files with 1 additions and 1 deletions
|
@ -1023,7 +1023,7 @@ static int main_nix_store(int argc, char * * argv)
|
|||
{
|
||||
Strings opFlags, opArgs;
|
||||
Operation op = 0;
|
||||
bool readFromStdIn;
|
||||
bool readFromStdIn = false;
|
||||
|
||||
parseCmdLine(argc, argv, [&](Strings::iterator & arg, const Strings::iterator & end) {
|
||||
Operation oldOp = op;
|
||||
|
|
Loading…
Reference in a new issue