Issue #105 Segfault Bugfix;

This commit is contained in:
lwvmobile 2023-03-21 21:09:45 -04:00
parent 2062502a59
commit 6b45c4ba9b
1 changed files with 3 additions and 0 deletions

View File

@ -545,6 +545,9 @@ openAudioInDevice (dsd_opts * opts)
const char ch = '.';
extension = strrchr(opts->audio_in_dev, ch); //return extension if this is a .wav or .bin file
//if no extension set, give default of .wav -- bugfix for github issue #105
if (extension == NULL) extension = ".wav";
// get info of device/file
if (strncmp(opts->audio_in_dev, "-", 1) == 0)
{