2

我正在转换一些代码以停止使用 char*,并改用 std::string 来避免内存泄漏和/或缓冲区过载。

但是我遇到了一个出现上述错误的函数。我并没有真正改变太多atm:

GuiText::GuiText(std::string t, int s, XeColor c) {
origText = NULL;
text = NULL;
size = s;
color = c;
alpha = c.a;
style = FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE;
maxWidth = 0;
wrap = false;
textDynNum = 0;
textScroll = SCROLL_NONE;
textScrollPos = 0;
textScrollInitialDelay = TEXT_SCROLL_INITIAL_DELAY;
textScrollDelay = TEXT_SCROLL_DELAY;

alignmentHor = ALIGN_CENTRE;
alignmentVert = ALIGN_MIDDLE;

if (!t.empty()) {
    origText = strdup(t.c_str());
    text = charToWideChar(gettext(t.c_str()));
}

for (int i = 0; i < 20; i++)
    textDyn[i] = NULL;
}

所有代码都在这里https://github.com/siz-/xmplayer/blob/temp/source/libwiigui/gui_text.cpp#L32

一切都是雏菊,因为我有很多 GuiText 实例,但是当我在第 59 行和 gui.h 中使用 const char* 评论函数以实际使我的代码使用正确的函数时,我得到了上述错误..我不能看看为什么。。

https://github.com/siz-/xmplayer/blob/temp/source/libwiigui/gui_text.cpp#L59 https://github.com/siz-/xmplayer/blob/temp/source/libwiigui/gui.h #L685

使用示例: https ://github.com/siz-/xmplayer/blob/temp/source/menu.cpp#L427

有任何想法吗?我已经转换了所有的 gui_text.cpp,但同样的错误,所以最好尝试查明问题并从那里开始。

希望你能帮助一个新手;-)

4

1 回答 1

2

我假设以下 2 行正在尝试初始化字符串:

origText = NULL;
text = NULL;

应该 1) 在初始化列表中初始化,2) 如果它为空,则不需要,3) 无效(您不能将字符串初始化为NULL)。

GuiText::GuiText(std::string t, int s, XeColor c) :
    origText(t),
    size(s),
    color(c),
    alpha(c.a),
    style(FTGX_JUSTIFY_CENTER | FTGX_ALIGN_MIDDLE),
    // etc
{
    // etc
}
于 2013-09-12T17:04:37.673 回答