output/winmm: use StringStartsWith() instead of strstr()

This commit is contained in:
Max Kellermann 2015-03-04 08:58:54 +01:00
parent cd08e5c7da
commit cee3070ca4

View File

@ -25,6 +25,7 @@
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "util/Macros.hxx"
#include "util/StringUtil.hxx"
#include <stdlib.h>
#include <string.h>
@ -109,7 +110,7 @@ get_device_id(const char *device_name, UINT *device_id, Error &error)
continue;
/* szPname is only 32 chars long, so it is often truncated.
Use partial match to work around this. */
if (strstr(device_name, caps.szPname) == device_name) {
if (StringStartsWith(device_name, caps.szPname)) {
*device_id = i;
return true;
}