Commit 4e4304d7 authored by Dmitry Torokhov's avatar Dmitry Torokhov Committed by Matthew Garrett

WMI: fix wmi_gtoa() to actully terminate the string

Courtesy of sparse...
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
parent 2d5ab555
...@@ -220,7 +220,7 @@ static int wmi_gtoa(const char *in, char *out) ...@@ -220,7 +220,7 @@ static int wmi_gtoa(const char *in, char *out)
for (i = 10; i <= 15; i++) for (i = 10; i <= 15; i++)
out += sprintf(out, "%02X", in[i] & 0xFF); out += sprintf(out, "%02X", in[i] & 0xFF);
out = '\0'; *out = '\0';
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment