Delphi 2009 中函数 CreateProcess 中的访问冲突

发布于 2024-11-24 05:52:54 字数 359 浏览 2 评论 0原文

在我的程序中,我有以下代码:

//Code
 if not CreateProcess(nil, NonConstCmd, nil, nil, True, NORMAL_PRIORITY_CLASS or
    CREATE_NEW_PROCESS_GROUP, nil, PCh, SI, P) then
//Code

并且我不断收到访问冲突错误。 顺便说一下,在 Delphi7 中,相同的代码可以完美运行。 我读过MSDN,发现Delphi中的CreateProcess函数可以修改第二个参数。 最初它是 const,这就是为什么我创建一个具有相同值的新变量。 但没有任何效果。

问题是:为什么这段代码不起作用?

In my program I've the following code:

//Code
 if not CreateProcess(nil, NonConstCmd, nil, nil, True, NORMAL_PRIORITY_CLASS or
    CREATE_NEW_PROCESS_GROUP, nil, PCh, SI, P) then
//Code

And I keep getting Access violation error.
By the way, in Delphi7 the same code works perfectly.
I've read MSDN and found that CreateProcess function in Delphi can modify the second argument.
Inititally It was const, that's why I create a new variable with the same value.
But it takes no effect.

The question is: why doesn't this code work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不回头走下去 2024-12-01 05:52:54

问题出在 lpCommandLine 参数中。我怀疑您正在做这样的事情:

var
  CmdLine: string;
...
CmdLine := 'notepad.exe';
CreateProcess(nil, PChar(CmdLine), ...)

这会导致访问冲突,因为 CmdLine 不是可写内存。该字符串是存储在只读存储器中的常量字符串。

相反,您可以这样做:

CmdLine := 'notepad.exe';
UniqueString(CmdLine);
CreateProcess(nil, PChar(CmdLine), ...)

这足以使 CmdLine 由可写内存支持。

仅仅使保存字符串的变量成为非常量是不够的,您还需要使支持字符串的内存也可写。当您将字符串文字分配给字符串变量时,该字符串变量指向只读内存。

The problem is in the lpCommandLine parameter. I suspect you are doing something like this:

var
  CmdLine: string;
...
CmdLine := 'notepad.exe';
CreateProcess(nil, PChar(CmdLine), ...)

This results in an access violation because CmdLine is not writeable memory. The string is a constant string stored in read-only memory.

Instead you can do this:

CmdLine := 'notepad.exe';
UniqueString(CmdLine);
CreateProcess(nil, PChar(CmdLine), ...)

This is enough to make CmdLine be backed by writeable memory.

It is not enough just to make the variable holding the string non-const, you need to make the memory that backs the string writeable too. When you assign a string literal to a string variable, the string variable points at read-only memory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文