We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bb72b6 commit c2f41bfCopy full SHA for c2f41bf
MpegCoder/MpegPyd.h
@@ -21,7 +21,7 @@ PyObject *str2PyStr(string Str) { // Convert the output string to the widechar
21
wchar_t* wszString = new wchar_t[static_cast<size_t>(wlen) + 1];
22
MultiByteToWideChar(CP_ACP, NULL, Str.c_str(), int(Str.size()), wszString, wlen);
23
wszString[wlen] = 0;
24
- PyObject* res = PyUnicode_FromWideChar((const Py_UNICODE*)wszString, wlen);
+ PyObject* res = PyUnicode_FromWideChar(wszString, wlen);
25
delete[] wszString;
26
return res;
27
}
0 commit comments