1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 07:01:18 +02:00

ImportFileHandle::GetStreamInfo returns reference. Don't dereference NULLs.

This commit is contained in:
Paul Licameli
2016-04-09 16:08:33 -04:00
parent eb6e093912
commit 9c18d3853d
10 changed files with 35 additions and 23 deletions

View File

@@ -99,7 +99,11 @@ public:
wxInt32 GetStreamCount(){ return 1; }
wxArrayString *GetStreamInfo(){ return NULL; }
const wxArrayString &GetStreamInfo() override
{
static wxArrayString empty;
return empty;
}
void SetStreamUsage(wxInt32 WXUNUSED(StreamID), bool WXUNUSED(Use)){}