Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Buffer overflow in Debug build #136

Open
@vid512

Description

@vid512

Nvy crashes due to heap corruption when built with MSVC as Debug build.

You can easily find the problem when you run it under ApplicationVerifier, with "heap" checking enabled. The bug is in string handling. This patch fixes it for me:

diff --git a/src/main.cpp b/src/main.cppindex 3a51802..61f73a0 100644--- a/src/main.cpp+++ b/src/main.cpp@@ -475,8 +475,8 @@ int WINAPI wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev_instance, _ MessageBoxA(NULL, "ERROR: File path too long", "Nvy", MB_OK | MB_ICONERROR); return 1; }-size_t tmp_len = sizeof(wchar_t) * (nvim_cmd_len + arg_len + 4);-wchar_t *tmp = static_cast<wchar_t *>(realloc(nvim_cmd, tmp_len));+size_t tmp_len = nvim_cmd_len + arg_len + 4;+wchar_t *tmp = static_cast<wchar_t *>(realloc(nvim_cmd, sizeof(wchar_t) * tmp_len)); if (tmp) { nvim_cmd = tmp; nvim_cmd_len = tmp_len;

From very basic look, I assume the bug only happens in Debug build due to some wcscat_s() debug feature - e.g. it always fills the entire buffer you give it. Since you passtmp_len ascount of characters, first wscat_s intotmp buffer withtmp_len overflows the buffer.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp