diff options
author | Chris Robinson <[email protected]> | 2014-03-28 22:11:34 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-28 22:11:34 -0700 |
commit | 7b93e10f7a24b7e18c916b0f791d9998f9b4b800 (patch) | |
tree | 204d07479d2f25e4170edfc80c68c810826384b2 /Alc/backends/winmm.c | |
parent | 7570195b0973770e2b19551399fcf0e4d3b81a21 (diff) |
Use an al_string for the device name
Diffstat (limited to 'Alc/backends/winmm.c')
-rw-r--r-- | Alc/backends/winmm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/backends/winmm.c b/Alc/backends/winmm.c index 7082a874..19cad879 100644 --- a/Alc/backends/winmm.c +++ b/Alc/backends/winmm.c @@ -336,7 +336,7 @@ retry_open: goto failure; } - Device->DeviceName = strdup(PlaybackDeviceList[DeviceID]); + al_string_copy_cstr(&Device->DeviceName, PlaybackDeviceList[DeviceID]); return ALC_NO_ERROR; failure: @@ -606,7 +606,7 @@ static ALCenum WinMMOpenCapture(ALCdevice *Device, const ALCchar *deviceName) if (data->WaveThread == NULL) goto failure; - Device->DeviceName = strdup(CaptureDeviceList[DeviceID]); + al_string_copy_cstr(&Device->DeviceName, CaptureDeviceList[DeviceID]); return ALC_NO_ERROR; failure: |