diff options
author | Adam Tkac <atkac@redhat.com> | 2009-09-04 10:16:58 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2009-09-04 10:16:58 +0000 |
commit | 97abe8a548ff9ca940d568128b21813b8a253872 (patch) | |
tree | d38ea6a539b2cc4e70d9569e71985914818546cd /unix/tx/TXWindow.cxx | |
parent | 8ed9009b4c4f497a95114d878334de3e13457bdd (diff) | |
download | tigervnc-97abe8a548ff9ca940d568128b21813b8a253872.tar.gz tigervnc-97abe8a548ff9ca940d568128b21813b8a253872.zip |
Replace rfb::strDup by safe_strdup and remove rfb::strFree in favor of free()
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3889 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix/tx/TXWindow.cxx')
-rw-r--r-- | unix/tx/TXWindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tx/TXWindow.cxx b/unix/tx/TXWindow.cxx index 2b535df8..1b695e5b 100644 --- a/unix/tx/TXWindow.cxx +++ b/unix/tx/TXWindow.cxx @@ -93,7 +93,7 @@ void TXWindow::init(Display* dpy, const char* defaultWindowClass_) static char tickBits[] = { 0x80, 0xc0, 0xe2, 0x76, 0x3e, 0x1c, 0x08, 0x00}; tick = XCreateBitmapFromData(dpy, DefaultRootWindow(dpy), tickBits, tickSize, tickSize); - defaultWindowClass = rfb::strDup(defaultWindowClass_); + defaultWindowClass = safe_strdup(defaultWindowClass_); } void TXWindow::handleXEvents(Display* dpy) |