forked from lix-project/lix
* Uninitialised variable. Fixes the --delete test.
This commit is contained in:
parent
b602d2dfdf
commit
b6780b9e10
|
@ -532,7 +532,7 @@ static void opGC(Strings opFlags, Strings opArgs)
|
||||||
roots). */
|
roots). */
|
||||||
static void opDelete(Strings opFlags, Strings opArgs)
|
static void opDelete(Strings opFlags, Strings opArgs)
|
||||||
{
|
{
|
||||||
bool ignoreLiveness;
|
bool ignoreLiveness = false;
|
||||||
|
|
||||||
for (Strings::iterator i = opFlags.begin();
|
for (Strings::iterator i = opFlags.begin();
|
||||||
i != opFlags.end(); ++i)
|
i != opFlags.end(); ++i)
|
||||||
|
|
Loading…
Reference in a new issue