我想在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-string,它永远存在于内存中。这是我的回调方法:
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
回调的正确用法是什么吗?
答案 0 :(得分:0)
好的,我检查了libgtksourceview的源代码:字符串由库释放,信号处理程序的文档是错误的。
我在这里为包的维护者提交了一个错误: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857873
所以实际上使用
是正确的...
return strdup(message);
...