Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 595764
Collapse All | Expand All

(-)a/old/ImportFLAC.cpp (-2 / +2 lines)
Lines 296-302 ImportFileHandle *FLACImportPlugin::Open(wxString filename) Link Here
296
   int cnt;
296
   int cnt;
297
   wxFile binaryFile;
297
   wxFile binaryFile;
298
   if (!binaryFile.Open(filename)) {
298
   if (!binaryFile.Open(filename)) {
299
      return false; // File not found
299
      return NULL; // File not found
300
   }
300
   }
301
301
302
#ifdef USE_LIBID3TAG
302
#ifdef USE_LIBID3TAG
Lines 313-319 ImportFileHandle *FLACImportPlugin::Open(wxString filename) Link Here
313
313
314
   if (cnt == wxInvalidOffset || strncmp(buf, FLAC_HEADER, 4) != 0) {
314
   if (cnt == wxInvalidOffset || strncmp(buf, FLAC_HEADER, 4) != 0) {
315
      // File is not a FLAC file
315
      // File is not a FLAC file
316
      return false; 
316
      return NULL; 
317
   }
317
   }
318
   
318
   
319
   // Open the file for import
319
   // Open the file for import

Return to bug 595764