diff options
author | Chris Robinson <[email protected]> | 2018-11-18 18:45:45 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-18 18:45:45 -0800 |
commit | bafcba7194c36eaf4fa1cb09b000170f8a138055 (patch) | |
tree | 5d81112305a2f920017bcf95a4a8221734eb2122 /Alc/backends/oss.cpp | |
parent | b10e7d08c34bc6d46aaf61ef2a0183e7841b75f3 (diff) |
Use a std::string for the device name
Diffstat (limited to 'Alc/backends/oss.cpp')
-rw-r--r-- | Alc/backends/oss.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Alc/backends/oss.cpp b/Alc/backends/oss.cpp index 38d1c40d..32ee1022 100644 --- a/Alc/backends/oss.cpp +++ b/Alc/backends/oss.cpp @@ -380,9 +380,7 @@ ALCenum ALCplaybackOSS_open(ALCplaybackOSS *self, const ALCchar *name) return ALC_INVALID_VALUE; } - al_free(device->DeviceName); - device->DeviceName = alstrdup(name); - + device->DeviceName = name; return ALC_NO_ERROR; } @@ -712,9 +710,7 @@ ALCenum ALCcaptureOSS_open(ALCcaptureOSS *self, const ALCchar *name) return ALC_OUT_OF_MEMORY; } - al_free(device->DeviceName); - device->DeviceName = alstrdup(name); - + device->DeviceName = name; return ALC_NO_ERROR; } |