1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Fix uninitialized TOC data file name
Forwarded: not-needed
Origin: upstream, https://github.com/cdrdao/cdrdao/pull/21/commits/251a40ab42305c412674c7c2d391374d91e91c95
Bug: https://github.com/cdrdao/cdrdao/issues/22
Last-Update: 2024-08-01
--- a/dao/main.cc
+++ b/dao/main.cc
@@ -219,6 +219,7 @@
fullBurn(false), withCddb(false), taoSource(false), keepImage(false), overburn(false),
writeSpeedControl(false), keep(false), printQuery(false), no_utf8(false)
{
+ dataFilename = NULL;
readingSpeed = -1;
writingSpeed = -1;
command = UNKNOWN;
|