mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.windows: Incorrect output buffer size passed to ReadConsoleOutputAttribute (fixes issue#362, thanks yanjun).
This commit is contained in:
parent
94f5252228
commit
3b6c5dc15e
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ static int Lget_consolecolor(lua_State *L) {
|
|||
|
||||
if (console == INVALID_HANDLE_VALUE) return lerror(L, "GetStdHandle");
|
||||
if (!GetConsoleScreenBufferInfo(console, &info)) return lerror(L, "GetConsoleScreenBufferInfo");
|
||||
if (!ReadConsoleOutputAttribute(console, &color, sizeof(WORD), info.dwCursorPosition, &read_len)) return lerror(L, "ReadConsoleOutputAttribute");
|
||||
if (!ReadConsoleOutputAttribute(console, &color, 1, info.dwCursorPosition, &read_len)) return lerror(L, "ReadConsoleOutputAttribute");
|
||||
|
||||
lua_pushnumber(L, color);
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue