mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Solve use of unassigned variable in DC42 writing implementation. :/
This commit is contained in:
@@ -797,7 +797,7 @@ namespace DiscImageChef.DiscImages
|
|||||||
{
|
{
|
||||||
header = new Dc42Header();
|
header = new Dc42Header();
|
||||||
bool tags = false;
|
bool tags = false;
|
||||||
bool macosx;
|
bool macosx = false;
|
||||||
|
|
||||||
if(options != null && options.TryGetValue("macosx", out string tmpOption))
|
if(options != null && options.TryGetValue("macosx", out string tmpOption))
|
||||||
bool.TryParse(tmpOption, out macosx);
|
bool.TryParse(tmpOption, out macosx);
|
||||||
|
|||||||
Reference in New Issue
Block a user