File: uninitialized-toc-data-file-name.patch

package info (click to toggle)
cdrdao 1%3A1.2.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,236 kB
  • sloc: cpp: 51,492; ansic: 33,096; sh: 4,720; perl: 673; makefile: 446; xml: 70
file content (15 lines) | stat: -rw-r--r-- 579 bytes parent folder | download | duplicates (2)
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;