gpt4 book ai didi

c - gtkSourceView - 查询工具提示文本的使用

转载 作者:行者123 更新时间:2023-11-30 16:48:56 25 4
gpt4 key购买 nike

我想在我的 gtkSourceView 上使用回调“query-tooltip-text”。我使用以下方法将回调连接到信号:

...
g_signal_connect(G_OBJECT(attributes), "query-tooltip-text", G_CALLBACK(on_lineMarkerTooltip_displayed), context->plainTextEditor_lineMarkers[lineNumber-1]->message);

这工作得很好..每当应该显示工具提示时,我的方法就会被调用。 ...->message 是一个永久存储在内存中的 C 字符串。这是我的回调方法:

gchar* on_lineMarkerTooltip_displayed(GtkSourceMarkAttributes *attributes, GtkSourceMark *mark, char* message)
{
printf("message3: %s\n", message); // just to see what is going on
return message;
}

gtk3 source doc统计数据表明我应该控制字符串的生命周期并在完成后释放它,我认为这应该没问题。

但是,我的回调在第二次调用后因双重释放段错误而失败:

...
message3: bad hour
message3:
message3: `�/EV
*** Error in `./cron-gui': double free or corruption (fasttop): 0x000056452fc70240 ***
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x70bcb)[0x7f85670a9bcb]
/lib/x86_64-linux-gnu/libc.so.6(+0x76f96)[0x7f85670aff96]
/lib/x86_64-linux-gnu/libc.so.6(+0x7778e)[0x7f85670b078e]
/usr/lib/x86_64-linux-gnu/libgtk-3.so.0(+0x214447)[0x7f85694
...

与官方文档中所说的不同,看起来 gtk3 在使用后释放了字符串的内存。我尝试相应地修改我的回调:

gchar* on_lineMarkerTooltip_displayed(GtkSourceMarkAttributes *attributes, GtkSourceMark *mark, char* message)
{
printf("message3: %s\n", message); // just to see what is going on
return strdup(message);
}

效果很好,但我担心我的应用程序现在可能会占用内存。您知道 query-tooltip-text 回调的正确用法是什么吗?

最佳答案

好的,我检查了 libgtksourceview 的源代码:该字符串已由库释放,信号处理程序的文档是错误的。

我在这里向软件包的维护者提交了一个错误: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857873

所以实际上使用是正确的

...
return strdup(message);
...

关于c - gtkSourceView - 查询工具提示文本的使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42805994/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com