Skip to content

Instantly share code, notes, and snippets.

@hostilefork
Created July 30, 2012 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hostilefork/3204769 to your computer and use it in GitHub Desktop.
Save hostilefork/3204769 to your computer and use it in GitHub Desktop.
Simple default Qt Creator program which generates ridiculous valgrind log
#include <QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
==32147== Memcheck, a memory error detector
==32147== Copyright (C) 2002-2011, and GNU GPL'd, by Julian Seward et al.
==32147== Using Valgrind-3.7.0 and LibVEX; rerun with -h for copyright info
==32147== Command: ./testing
==32147==
==32147==
==32147== FILE DESCRIPTORS: 3 open at exit.
==32147== Open file descriptor 2: /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/log
==32147== <inherited from parent>
==32147==
==32147== Open file descriptor 1: /dev/pts/1
==32147== <inherited from parent>
==32147==
==32147== Open file descriptor 0: /dev/pts/1
==32147== <inherited from parent>
==32147==
==32147==
==32147== HEAP SUMMARY:
==32147== in use at exit: 125,343 bytes in 2,330 blocks
==32147== total heap usage: 41,058 allocs, 38,728 frees, 5,948,679 bytes allocated
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 1 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x518928E: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5189C17: g_private_get (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51649EB: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 2 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5B0F94F: qt_plugin_instance (in /usr/lib/kde4/plugins/gui_platform/libkde.so)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 3 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5B0F94F: qt_plugin_instance (in /usr/lib/kde4/plugins/gui_platform/libkde.so)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 4 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CFB472: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CFBF68: QObject::disconnect(QObject const*, char const*, QObject const*, char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C730A0: QTextStream::QTextStream(QByteArray*, QFlags<QIODevice::OpenModeFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E5D3EA: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E41655: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E5B21F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 5 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C730D2: QTextStream::QTextStream(QByteArray*, QFlags<QIODevice::OpenModeFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E5D3EA: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E41655: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E5B21F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 6 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B5687: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 7 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B5687: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 8 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B5CBF: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 9 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B5FE7: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 10 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B632F: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 11 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B668F: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 12 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B69BF: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 13 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B6D2F: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 14 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B7057: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 15 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B75BF: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 16 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B787F: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 17 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B7BF7: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 18 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x699ACC1: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699AF0E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6ED9EC1: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBDC06: dbus_connection_set_watch_functions (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6993AF1: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 19 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x699AC15: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699AF0E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6ED9EEC: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBDC06: dbus_connection_set_watch_functions (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6993AF1: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 20 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69AD682: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69AE5C3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6991C10: QDBusConnection::connect(QString const&, QString const&, QString const&, QString const&, QStringList const&, QString const&, QObject*, char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69B9CC2: QDBusAbstractInterface::QDBusAbstractInterface(QString const&, QString const&, char const*, QDBusConnection const&, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6996309: QDBusConnectionInterface::QDBusConnectionInterface(QDBusConnection const&, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699195D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993B2A: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 21 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x500D30F: strdup (strdup.c:43)
==32147== by 0x534973A: IceRegisterForProtocolSetup (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x5330B7F: SmcOpenConnection (in /usr/lib/i386-linux-gnu/libSM.so.6.0.1)
==32147== by 0x421512B: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 22 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x500D30F: strdup (strdup.c:43)
==32147== by 0x5349748: IceRegisterForProtocolSetup (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x5330B7F: SmcOpenConnection (in /usr/lib/i386-linux-gnu/libSM.so.6.0.1)
==32147== by 0x421512B: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 23 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x534978F: IceRegisterForProtocolSetup (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x5330B7F: SmcOpenConnection (in /usr/lib/i386-linux-gnu/libSM.so.6.0.1)
==32147== by 0x421512B: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 24 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x534979E: IceRegisterForProtocolSetup (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x5330B7F: SmcOpenConnection (in /usr/lib/i386-linux-gnu/libSM.so.6.0.1)
==32147== by 0x421512B: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 25 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4215259: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 26 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4215259: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 27 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46C392B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46C3B11: QToolButton::QToolButton(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BFA94: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BC432: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB144: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB82D: QToolBar::QToolBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A7D4: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 28 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46BC486: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB144: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB82D: QToolBar::QToolBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A7D4: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 29 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46BC155: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BC4B2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB144: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB82D: QToolBar::QToolBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A7D4: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 30 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46BB1F7: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB82D: QToolBar::QToolBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A7D4: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 31 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CFB472: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CFBEB9: QObject::disconnect(QObject const*, char const*, QObject const*, char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x464937D: QMainWindow::addToolBar(Qt::ToolBarArea, QToolBar*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464951B: QMainWindow::addToolBar(QToolBar*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A826: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x7BF6827: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 32 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x404653F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 33 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x401CFF3: ??? (in /lib/i386-linux-gnu/ld-2.13.so)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 34 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0xBED6CB77: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 35 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47FF: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0xBED6CB0B: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 36 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E2F3A3: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E4D59A: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x46BA9D6: QToolBar::event(QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418AD6B: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4191C4F: QApplication::notify(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDE6CA: QCoreApplication::notifyInternal(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x41DF00A: QWidget::ensurePolished() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41DF050: QWidget::ensurePolished() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDE41: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 37 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B8617: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 38 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0xBED6CB57: ???
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 39 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46E1998: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB25: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDEA0: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 40 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46E1998: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB25: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDEA0: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 41 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x461ED19: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB31: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDEA0: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 42 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46E1998: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB25: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C38ED: QLayout::widgetEvent(QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418AD35: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4191C4F: QApplication::notify(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDE6CA: QCoreApplication::notifyInternal(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x41E6DE8: QWidgetPrivate::sendPendingMoveAndResizeEvents(bool, bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EC548: QWidgetPrivate::show_helper() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDF4A: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 43 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x518928E: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5189C17: g_private_get (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147413: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5149534: g_main_context_dispatch (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51499CF: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5149AB0: g_main_context_iteration (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D314: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDCFA8: QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDD4B1: QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE393E: QCoreApplication::exec() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4189AB6: QApplication::exec() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A558: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 44 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46E1998: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB25: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C391A: QLayout::widgetEvent(QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418AD35: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4191C4F: QApplication::notify(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDE6CA: QCoreApplication::notifyInternal(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE3547: QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE387C: QCoreApplication::sendPostedEvents(QObject*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4D12703: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5149632: g_main_context_dispatch (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51499CF: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147==
==32147== 4 bytes in 1 blocks are still reachable in loss record 45 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC1578: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x461ED19: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB31: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C391A: QLayout::widgetEvent(QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418AD35: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4191C4F: QApplication::notify(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDE6CA: QCoreApplication::notifyInternal(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE3547: QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE387C: QCoreApplication::sendPostedEvents(QObject*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4D12703: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5149632: g_main_context_dispatch (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51499CF: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147==
==32147== 5 bytes in 1 blocks are still reachable in loss record 46 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x500D30F: strdup (strdup.c:43)
==32147== by 0x53496E4: IceRegisterForProtocolSetup (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x5330B7F: SmcOpenConnection (in /usr/lib/i386-linux-gnu/libSM.so.6.0.1)
==32147== by 0x421512B: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 6 bytes in 1 blocks are still reachable in loss record 47 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x500D30F: strdup (strdup.c:43)
==32147== by 0x53F3DC1: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0xBED6B7EF: ???
==32147==
==32147== 7 bytes in 1 blocks are still reachable in loss record 48 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED9C7: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F22B7: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x473A522C: ???
==32147==
==32147== 8 bytes in 1 blocks are still reachable in loss record 49 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC59DA: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC2326: QThread::currentThread() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDE909: QCoreApplicationPrivate::QCoreApplicationPrivate(int&, char**, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x418A3F6: QApplicationPrivate::QApplicationPrivate(int&, char**, QApplication::Type, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x419695F: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 8 bytes in 2 blocks are still reachable in loss record 50 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x518928E: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5189C17: g_private_get (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 11 bytes in 1 blocks are still reachable in loss record 51 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED95D: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x473A522C: ???
==32147==
==32147== 11 bytes in 1 blocks are still reachable in loss record 52 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53F5073: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0xBED6D1F7: ???
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 53 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53F0D31: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A4F: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 54 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53F3AA8: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 55 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x535EF91: FcBlanksCreate (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53796C9: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x553605A: ??? (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5536D81: ??? (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5533BF0: ??? (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5535631: ??? (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5538A4A: XML_ParseBuffer (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5378490: FcConfigParseAndLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x536CDA5: FcInitLoadConfig (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 56 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x539D41A: XextCreateExtension (in /usr/lib/i386-linux-gnu/libXext.so.6.4.0)
==32147== by 0x539CEA4: ??? (in /usr/lib/i386-linux-gnu/libXext.so.6.4.0)
==32147== by 0x539D24A: ??? (in /usr/lib/i386-linux-gnu/libXext.so.6.4.0)
==32147== by 0x539D715: XextAddDisplay (in /usr/lib/i386-linux-gnu/libXext.so.6.4.0)
==32147== by 0x5397D5D: ??? (in /usr/lib/i386-linux-gnu/libXext.so.6.4.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 57 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53FB7FE: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 58 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x5B0F900: qt_plugin_instance (in /usr/lib/kde4/plugins/gui_platform/libkde.so)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 59 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x6E36D30: qt_plugin_instance (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 60 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDD995: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED7214: dbus_threads_init (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EE480C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699D4FA: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993A9B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 61 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDD995: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED7336: dbus_threads_init (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EE480C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699D4FA: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993A9B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 62 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDD995: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB157: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 63 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDD995: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECA485: dbus_message_unref (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED15AA: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC01EA: dbus_connection_send_with_reply_and_block (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBAEB1: dbus_bus_register (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1CD: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 12 bytes in 1 blocks are still reachable in loss record 64 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5349760: IceRegisterForProtocolSetup (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x5330B7F: SmcOpenConnection (in /usr/lib/i386-linux-gnu/libSM.so.6.0.1)
==32147== by 0x421512B: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 65 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53780AF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE67: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 66 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53780AF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AEA3: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 67 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AEA3: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 68 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AF7F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 69 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AF93: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 70 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B277: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 71 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B2DB: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 72 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B06F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 73 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5372B21: FcPatternCreate (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0x12: ???
==32147== by 0x10: ???
==32147== by 0xE: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 74 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537810B: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE53: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 75 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53780AF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE67: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 76 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53780AF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 77 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53780AF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE7B: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 16 bytes in 1 blocks are still reachable in loss record 78 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374A5A: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53677C8: FcDefaultSubstitute (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x441CDC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4425024: QFontDatabase::load(QFontPrivate const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x43FA200: QFontPrivate::engineForScript(int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x44133DE: QFontMetrics::height() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469AA45: QStatusBar::reformat() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469B60D: QStatusBar::setSizeGripEnabled(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469B8AB: QStatusBar::QStatusBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A8B8: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 16 bytes in 1 blocks are definitely lost in loss record 79 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5372B21: FcPatternCreate (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537051E: FcFontRenderPrepare (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537095C: FcFontMatch (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x56C380F: ???
==32147==
==32147== 18 bytes in 1 blocks are still reachable in loss record 80 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5375478: FcStrCopy (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5376AEF: FcStrSetAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378339: FcConfigParseAndLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378A36: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 19 bytes in 1 blocks are still reachable in loss record 81 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x500D30F: strdup (strdup.c:43)
==32147== by 0x53497BD: IceRegisterForProtocolSetup (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x5330B7F: SmcOpenConnection (in /usr/lib/i386-linux-gnu/libSM.so.6.0.1)
==32147== by 0x421512B: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 82 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53773AD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE8F: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 83 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AEB7: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 84 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AF1B: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 85 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AF6B: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 86 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AFBB: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 87 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AFE3: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 88 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B0AB: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 89 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B173: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 90 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B1C3: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 91 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B263: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 92 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B2C7: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 93 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B0E7: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 94 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B10F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 95 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B01F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 96 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B083: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 97 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x54DC125: _dlerror_run (dlerror.c:142)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422276B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 20 bytes in 1 blocks are still reachable in loss record 98 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EF7DB: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 20 bytes in 1 blocks are indirectly lost in loss record 99 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5374013: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374242: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5379416: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0x12: ???
==32147== by 0x10: ???
==32147== by 0xE: ???
==32147==
==32147== 22 bytes in 1 blocks are still reachable in loss record 100 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5375478: FcStrCopy (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5376AEF: FcStrSetAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378339: FcConfigParseAndLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x536CDA5: FcInitLoadConfig (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 22 bytes in 1 blocks are indirectly lost in loss record 101 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C142F9: QString::QString(QChar const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF86AD: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF8702: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEDE26: QLocalePrivate::longLongToString(QChar, QChar, QChar, QChar, long long, int, int, int, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEE045: QLocalePrivate::longLongToString(long long, int, int, int, unsigned int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1DFE4: QString::setNum(long long, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1E0F6: QString::number(int, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90C2: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131BF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 22 bytes in 1 blocks are indirectly lost in loss record 102 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C142F9: QString::QString(QChar const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF86AD: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF8702: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEDE26: QLocalePrivate::longLongToString(QChar, QChar, QChar, QChar, long long, int, int, int, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEE045: QLocalePrivate::longLongToString(long long, int, int, int, unsigned int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1DFE4: QString::setNum(long long, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1E0F6: QString::number(int, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90C2: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422274F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 22 bytes in 1 blocks are indirectly lost in loss record 103 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C142F9: QString::QString(QChar const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF86AD: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF8702: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEDE26: QLocalePrivate::longLongToString(QChar, QChar, QChar, QChar, long long, int, int, int, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEE045: QLocalePrivate::longLongToString(long long, int, int, int, unsigned int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1DFE4: QString::setNum(long long, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1E0F6: QString::number(int, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90C2: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131BF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 22 bytes in 1 blocks are indirectly lost in loss record 104 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C142F9: QString::QString(QChar const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF86AD: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF8702: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEDE26: QLocalePrivate::longLongToString(QChar, QChar, QChar, QChar, long long, int, int, int, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEE045: QLocalePrivate::longLongToString(long long, int, int, int, unsigned int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1DFE4: QString::setNum(long long, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1E0F6: QString::number(int, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90C2: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220F2C: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 22 bytes in 1 blocks are indirectly lost in loss record 105 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C142F9: QString::QString(QChar const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF86AD: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF8702: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEDE26: QLocalePrivate::longLongToString(QChar, QChar, QChar, QChar, long long, int, int, int, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEE045: QLocalePrivate::longLongToString(long long, int, int, int, unsigned int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1DFE4: QString::setNum(long long, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1E0F6: QString::number(int, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90C2: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422103C: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 22 bytes in 1 blocks are indirectly lost in loss record 106 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C142F9: QString::QString(QChar const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF86AD: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BF8702: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEDE26: QLocalePrivate::longLongToString(QChar, QChar, QChar, QChar, long long, int, int, int, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BEE045: QLocalePrivate::longLongToString(long long, int, int, int, unsigned int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1DFE4: QString::setNum(long long, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1E0F6: QString::number(int, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90C2: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7D79: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 107 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5189321: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51893E4: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5189697: g_mutex_lock (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5117B41: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164B3C: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 108 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5189321: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5189627: g_mutex_init (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5117C7A: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164B3C: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 109 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5189321: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5189627: g_mutex_init (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5117CA3: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164B3C: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 110 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE67: ???
==32147== by 0xD: ???
==32147== by 0xB: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 111 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x537750D: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE67: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 112 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AF57: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 113 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AFA7: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 114 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B097: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 115 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B187: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 116 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B19B: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 117 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B1AF: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 118 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B1EB: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 119 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B1FF: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 120 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B213: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 121 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B23B: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 122 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B24F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 123 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B28B: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 124 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B29F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 125 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B2B3: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 126 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x53F00A3: _XlcResolveLocaleName (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3C78: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 24 bytes in 1 blocks are still reachable in loss record 127 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C282A4: QVectorData::allocate(int, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDD84F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDD417: QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE393E: QCoreApplication::exec() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4189AB6: QApplication::exec() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A558: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 28 bytes in 1 blocks are still reachable in loss record 128 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AFF7: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 29 bytes in 1 blocks are still reachable in loss record 129 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007774: _dl_map_object (dl-load.c:2466)
==32147== by 0x400D48B: openaux (dl-deps.c:65)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x400C701: _dl_map_object_deps (dl-deps.c:247)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 29 bytes in 1 blocks are still reachable in loss record 130 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x400D48B: openaux (dl-deps.c:65)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x400C701: _dl_map_object_deps (dl-deps.c:247)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 30 bytes in 1 blocks are still reachable in loss record 131 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x557AC3F: XauFileName (in /usr/lib/i386-linux-gnu/libXau.so.6.0.0)
==32147== by 0x557AEB8: XauGetBestAuthByAddr (in /usr/lib/i386-linux-gnu/libXau.so.6.0.0)
==32147== by 0x5563F93: ??? (in /usr/lib/i386-linux-gnu/libxcb.so.1.1.0)
==32147== by 0xBED6C93B: ???
==32147==
==32147== 30 bytes in 2 blocks are still reachable in loss record 132 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED9C7: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F22B7: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x2E313035: ???
==32147==
==32147== 30 bytes in 1 blocks are indirectly lost in loss record 133 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C16B43: QString::fromLatin1_helper(char const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131A1: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 134 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC24BD: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC59C7: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC2326: QThread::currentThread() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDE909: QCoreApplicationPrivate::QCoreApplicationPrivate(int&, char**, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x418A3F6: QApplicationPrivate::QApplicationPrivate(int&, char**, QApplication::Type, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x419695F: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 135 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC254A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC35A9: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC59E9: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC2326: QThread::currentThread() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDE909: QCoreApplicationPrivate::QCoreApplicationPrivate(int&, char**, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x418A3F6: QApplicationPrivate::QApplicationPrivate(int&, char**, QApplication::Type, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x419695F: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 136 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53D3302: _XrmInternalStringToQuark (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53D3501: XrmPermStringToQuark (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 137 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53712DD: FcMatrixCopy (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5377FEA: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AEA3: ???
==32147== by 0x2C: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 138 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B00B: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 139 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53712DD: FcMatrixCopy (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5377FEA: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE7B: ???
==32147== by 0x2C: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 140 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED67B: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 141 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED6A1: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 142 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED6C7: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 143 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED6ED: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 144 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAF19: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 145 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAF3B: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 146 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAF67: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 147 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAF8D: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 148 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAFAB: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 149 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAFC9: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 150 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAFF1: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 151 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB013: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 152 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB03B: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 153 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB061: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 154 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB083: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 155 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB0A5: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 156 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB0C7: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 157 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB0E9: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 158 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB107: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 159 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB129: _XlcAddUtf8LocaleConverters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167BF: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 160 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FADEB: _XlcAddUtf8Converters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167A9: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 161 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAE0F: _XlcAddUtf8Converters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167A9: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 162 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAE2D: _XlcAddUtf8Converters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167A9: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 163 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAE55: _XlcAddUtf8Converters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167A9: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 164 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAE77: _XlcAddUtf8Converters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167A9: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 165 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAE9B: _XlcAddUtf8Converters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167A9: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 166 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EDE03: _XlcSetConverter (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FAEB9: _XlcAddUtf8Converters (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x54167A9: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 167 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5B0F94F: qt_plugin_instance (in /usr/lib/kde4/plugins/gui_platform/libkde.so)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 168 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5B0F94F: qt_plugin_instance (in /usr/lib/kde4/plugins/gui_platform/libkde.so)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 169 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CFB472: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CFBF68: QObject::disconnect(QObject const*, char const*, QObject const*, char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C730A0: QTextStream::QTextStream(QByteArray*, QFlags<QIODevice::OpenModeFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E5D3EA: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E41655: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E5B21F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 170 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C730D2: QTextStream::QTextStream(QByteArray*, QFlags<QIODevice::OpenModeFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E5D3EA: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E41655: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E5B21F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 171 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B5687: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 172 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B5687: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 173 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B5CBF: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 174 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B5FE7: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 175 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B632F: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 176 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B668F: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 177 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B69BF: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 178 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B6D2F: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 179 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B7057: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 180 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B75BF: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 181 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B787F: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 182 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6DF4C7E: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B7BF7: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 183 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x699ACC1: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699AF0E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6ED9EC1: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBDC06: dbus_connection_set_watch_functions (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6993AF1: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 184 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x699AC15: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699AF0E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6ED9EEC: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBDC06: dbus_connection_set_watch_functions (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6993AF1: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 185 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69AD682: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69AE5C3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6991C10: QDBusConnection::connect(QString const&, QString const&, QString const&, QString const&, QStringList const&, QString const&, QObject*, char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69B9CC2: QDBusAbstractInterface::QDBusAbstractInterface(QString const&, QString const&, char const*, QDBusConnection const&, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6996309: QDBusConnectionInterface::QDBusConnectionInterface(QDBusConnection const&, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699195D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993B2A: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 186 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BE75F7: QListData::detach_grow(int*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE414E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE080D: QCoreApplication::postEvent(QObject*, QEvent*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE0A5B: QCoreApplication::postEvent(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF1063: QObject::deleteLater() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x699AA4B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6EDA3F0: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699E136: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6999B93: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6991DDF: QDBusConnection::~QDBusConnection() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6995FFE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x4FC650E: __run_exit_handlers (exit.c:78)
==32147== by 0x4FC657E: exit (exit.c:100)
==32147== by 0x4FADE4D: (below main) (libc-start.c:260)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 187 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5349709: IceRegisterForProtocolSetup (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x5330B7F: SmcOpenConnection (in /usr/lib/i386-linux-gnu/libSM.so.6.0.1)
==32147== by 0x421512B: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 188 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x533C273: IceAuthFileName (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x533E6F4: _IceGetPoValidAuthIndices (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0x533CC1A: IceOpenConnection (in /usr/lib/i386-linux-gnu/libICE.so.6.3.0)
==32147== by 0xBED6CE4F: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 189 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4215259: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 190 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4215259: QSessionManager::QSessionManager(QApplication*, QString&, QString&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4195808: QApplicationPrivate::initialize() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959BF: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 191 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46C392B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46C3B11: QToolButton::QToolButton(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BFA94: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BC432: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB144: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB82D: QToolBar::QToolBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A7D4: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 192 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46BC486: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB144: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB82D: QToolBar::QToolBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A7D4: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 193 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46BC155: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BC4B2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB144: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB82D: QToolBar::QToolBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A7D4: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 194 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46BB1F7: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46BB82D: QToolBar::QToolBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A7D4: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 195 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CFB472: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CFBEB9: QObject::disconnect(QObject const*, char const*, QObject const*, char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x464937D: QMainWindow::addToolBar(Qt::ToolBarArea, QToolBar*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464951B: QMainWindow::addToolBar(QToolBar*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A826: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x7BF6827: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 196 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x404653F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 197 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x401CFF3: ??? (in /lib/i386-linux-gnu/ld-2.13.so)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 198 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0xBED6CB77: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 199 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47FF: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0xBED6CB0B: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 200 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E2F3A3: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6E4D59A: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x46BA9D6: QToolBar::event(QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418AD6B: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4191C4F: QApplication::notify(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDE6CA: QCoreApplication::notifyInternal(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x41DF00A: QWidget::ensurePolished() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41DF050: QWidget::ensurePolished() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDE41: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 201 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x57B8617: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 202 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x6E1C49F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x6DF47C8: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0xBED6CB57: ???
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 203 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C03: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46E1998: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB25: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDEA0: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 204 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46E1998: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB25: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDEA0: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 205 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x461ED19: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB31: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDEA0: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 206 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46E1998: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB25: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C38ED: QLayout::widgetEvent(QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418AD35: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4191C4F: QApplication::notify(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDE6CA: QCoreApplication::notifyInternal(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x41E6DE8: QWidgetPrivate::sendPendingMoveAndResizeEvents(bool, bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EC548: QWidgetPrivate::show_helper() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41EDF4A: QWidget::setVisible(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A553: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 207 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x514F3AA: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D314: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDCFA8: QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDD4B1: QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE393E: QCoreApplication::exec() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4189AB6: QApplication::exec() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A558: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 208 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x46E1998: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB25: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C391A: QLayout::widgetEvent(QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418AD35: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4191C4F: QApplication::notify(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDE6CA: QCoreApplication::notifyInternal(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE3547: QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE387C: QCoreApplication::sendPostedEvents(QObject*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4D12703: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5149632: g_main_context_dispatch (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147==
==32147== 32 bytes in 1 blocks are still reachable in loss record 209 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BBFCE2: QMutex::QMutex(QMutex::RecursionMode) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC158C: QMutexPool::createMutex(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF7C1B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x46E0BC3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x461ED19: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464CB31: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464DB8D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x464E2EF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C225E: QLayoutPrivate::doResize(QSize const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C2386: QLayout::activate() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41C391A: QLayout::widgetEvent(QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418AD35: QApplicationPrivate::notify_helper(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4191C4F: QApplication::notify(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDE6CA: QCoreApplication::notifyInternal(QObject*, QEvent*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE3547: QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE387C: QCoreApplication::sendPostedEvents(QObject*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4D12703: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5149632: g_main_context_dispatch (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147==
==32147== 32 bytes in 2 blocks are still reachable in loss record 210 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53769F2: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 32 bytes in 2 blocks are still reachable in loss record 211 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE7B: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 32 bytes in 2 blocks are still reachable in loss record 212 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED9C7: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F22B7: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x3830322F: ???
==32147==
==32147== 32 bytes in 2 blocks are still reachable in loss record 213 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5373FC7: FcValueSave (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374077: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537489E: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53705C6: FcFontRenderPrepare (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537095C: FcFontMatch (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x56C380F: ???
==32147==
==32147== 32 bytes in 1 blocks are indirectly lost in loss record 214 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C16B43: QString::fromLatin1_helper(char const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4222721: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 32 bytes in 1 blocks are indirectly lost in loss record 215 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C16B43: QString::fromLatin1_helper(char const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7CE8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 34 bytes in 1 blocks are indirectly lost in loss record 216 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C16B43: QString::fromLatin1_helper(char const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220EF8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 35 bytes in 1 blocks are still reachable in loss record 217 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007774: _dl_map_object (dl-load.c:2466)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 35 bytes in 1 blocks are still reachable in loss record 218 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 35 bytes in 1 blocks are still reachable in loss record 219 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007774: _dl_map_object (dl-load.c:2466)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7D9F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 35 bytes in 1 blocks are still reachable in loss record 220 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7D9F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 36 bytes in 3 blocks are still reachable in loss record 221 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x536C9F1: FcFontSetCreate (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 36 bytes in 1 blocks are indirectly lost in loss record 222 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C16B43: QString::fromLatin1_helper(char const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4221008: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 38 bytes in 2 blocks are still reachable in loss record 223 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED95D: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x2E313035: ???
==32147==
==32147== 38 bytes in 1 blocks are indirectly lost in loss record 224 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C16B43: QString::fromLatin1_helper(char const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131A1: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 39 bytes in 1 blocks are still reachable in loss record 225 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007774: _dl_map_object (dl-load.c:2466)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422276B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 39 bytes in 1 blocks are still reachable in loss record 226 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422276B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 39 bytes in 1 blocks are still reachable in loss record 227 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007774: _dl_map_object (dl-load.c:2466)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 39 bytes in 1 blocks are still reachable in loss record 228 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 39 bytes in 1 blocks are still reachable in loss record 229 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007407: _dl_map_object (dl-load.c:2493)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 39 bytes in 1 blocks are still reachable in loss record 230 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 40 bytes in 1 blocks are still reachable in loss record 231 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007774: _dl_map_object (dl-load.c:2466)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220F4E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 40 bytes in 1 blocks are still reachable in loss record 232 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220F4E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 40 bytes in 1 blocks are still reachable in loss record 233 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDE05C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC9B3F: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECCE1A: dbus_message_new_signal (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBD1C9: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBEF99: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1B0: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 40 bytes in 1 blocks are still reachable in loss record 234 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDE05C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC9B3F: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECAAEA: dbus_message_new_method_call (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBAE81: dbus_bus_register (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1CD: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 40 bytes in 2 blocks are still reachable in loss record 235 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537810B: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6C653: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 40 bytes in 2 blocks are still reachable in loss record 236 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53773AD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE7B: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 40 bytes in 2 blocks are still reachable in loss record 237 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B05B: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 40 bytes in 2 blocks are still reachable in loss record 238 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED95D: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x3830322F: ???
==32147==
==32147== 40 bytes in 3 blocks are still reachable in loss record 239 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x53F1A52: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F316D: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 40 bytes in 5 blocks are still reachable in loss record 240 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED803: _XlcAddCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F22D5: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F316D: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 40 bytes in 1 blocks are indirectly lost in loss record 241 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C13F0B: QString::QString(int, Qt::Initialization) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCF154: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 40 bytes in 1 blocks are indirectly lost in loss record 242 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x536D891: FcLangSetCreate (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x536DC76: FcLangSetCopy (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5373F59: FcValueSave (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374077: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537489E: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53705C6: FcFontRenderPrepare (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537095C: FcFontMatch (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x56C380F: ???
==32147==
==32147== 41 bytes in 1 blocks are still reachable in loss record 243 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007774: _dl_map_object (dl-load.c:2466)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422105E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 41 bytes in 1 blocks are still reachable in loss record 244 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422105E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 42 bytes in 1 blocks are still reachable in loss record 245 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDB848: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB31C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 44 bytes in 1 blocks are still reachable in loss record 246 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A24D: _dl_lookup_symbol_x (dl-lookup.c:624)
==32147== by 0x400ADB5: _dl_relocate_object (dl-machine.h:344)
==32147== by 0x4012332: dl_open_worker (dl-open.c:408)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 44 bytes in 1 blocks are still reachable in loss record 247 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C9EF: _dl_map_object_deps (dl-deps.c:506)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7D9F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 44 bytes in 2 blocks are still reachable in loss record 248 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AECB: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 45 bytes in 1 blocks are still reachable in loss record 249 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007407: _dl_map_object (dl-load.c:2493)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 45 bytes in 1 blocks are still reachable in loss record 250 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 47 bytes in 5 blocks are still reachable in loss record 251 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED4EC: _XlcAddCT (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED60E: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 48 bytes in 1 blocks are still reachable in loss record 252 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53ED919: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x473A522C: ???
==32147==
==32147== 48 bytes in 2 blocks are still reachable in loss record 253 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537810B: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE53: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 48 bytes in 2 blocks are still reachable in loss record 254 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE8F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 48 bytes in 2 blocks are still reachable in loss record 255 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AF43: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 48 bytes in 2 blocks are still reachable in loss record 256 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B1D7: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 48 bytes in 2 blocks are still reachable in loss record 257 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B227: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 48 bytes in 1 blocks are indirectly lost in loss record 258 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C13F0B: QString::QString(int, Qt::Initialization) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCF154: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422276B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 48 bytes in 1 blocks are indirectly lost in loss record 259 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C13F0B: QString::QString(int, Qt::Initialization) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCF154: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 48 bytes in 1 blocks are indirectly lost in loss record 260 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C13F0B: QString::QString(int, Qt::Initialization) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCF154: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7D9F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 50 bytes in 1 blocks are indirectly lost in loss record 261 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C13F0B: QString::QString(int, Qt::Initialization) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCF154: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220F4E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 52 bytes in 1 blocks are still reachable in loss record 262 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53769F2: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5376B52: FcStrSetAddFilename (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363C57: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363CF4: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363F5F: FcConfigBuildFonts (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 52 bytes in 2 blocks are still reachable in loss record 263 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B0FB: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 52 bytes in 2 blocks are still reachable in loss record 264 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B047: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 52 bytes in 3 blocks are still reachable in loss record 265 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537810B: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6C63F: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 52 bytes in 3 blocks are still reachable in loss record 266 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x53EE65A: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF269: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF380: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF684: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 52 bytes in 1 blocks are indirectly lost in loss record 267 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C13F0B: QString::QString(int, Qt::Initialization) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCF154: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422105E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 56 bytes in 1 blocks are still reachable in loss record 268 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699D4FA: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993A9B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 56 bytes in 14 blocks are still reachable in loss record 269 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53F1B1A: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F316D: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 60 bytes in 1 blocks are still reachable in loss record 270 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC59B3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC2326: QThread::currentThread() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDE909: QCoreApplicationPrivate::QCoreApplicationPrivate(int&, char**, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x418A3F6: QApplicationPrivate::QApplicationPrivate(int&, char**, QApplication::Type, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x419695F: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 60 bytes in 3 blocks are still reachable in loss record 271 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53773AD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6C63F: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 60 bytes in 3 blocks are still reachable in loss record 272 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 64 bytes in 1 blocks are still reachable in loss record 273 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400F787: _dl_check_map_versions (dl-version.c:299)
==32147== by 0x40125AA: dl_open_worker (dl-open.c:269)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 64 bytes in 1 blocks are still reachable in loss record 274 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400F787: _dl_check_map_versions (dl-version.c:299)
==32147== by 0x40125AA: dl_open_worker (dl-open.c:269)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422276B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 64 bytes in 1 blocks are still reachable in loss record 275 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400F787: _dl_check_map_versions (dl-version.c:299)
==32147== by 0x40125AA: dl_open_worker (dl-open.c:269)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 64 bytes in 1 blocks are still reachable in loss record 276 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400F787: _dl_check_map_versions (dl-version.c:299)
==32147== by 0x40125AA: dl_open_worker (dl-open.c:269)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422105E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 64 bytes in 1 blocks are still reachable in loss record 277 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x53E4B4D: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53E54BE: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53E61D4: XrmGetStringDatabase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 64 bytes in 1 blocks are still reachable in loss record 278 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x402849F: realloc (vg_replace_malloc.c:632)
==32147== by 0x514F092: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x514F7F8: g_realloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x511AFEA: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x511C449: g_ptr_array_add (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5149358: g_main_context_check (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51498E1: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5149AB0: g_main_context_iteration (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D314: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CDCFA8: QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDD4B1: QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE393E: QCoreApplication::exec() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4189AB6: QApplication::exec() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A558: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 64 bytes in 2 blocks are still reachable in loss record 279 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x535FF1A: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53606E8: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5360736: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53601C9: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x536085F: FcDirCacheLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5367F4B: FcDirCacheRead (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363CD2: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363F5F: FcConfigBuildFonts (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 64 bytes in 3 blocks are still reachable in loss record 280 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AEF3: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 64 bytes in 3 blocks are still reachable in loss record 281 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6B033: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 64 bytes in 1 blocks are indirectly lost in loss record 282 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x4BBDDB3: qRealloc(void*, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1A7FF: QString::realloc(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1ADB6: QString::append(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BDB252: QDateTime::toString(Qt::DateFormat) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCA55D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC26FE: QFactoryLoader::updateDir(QString const&, QSettings&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC478B: QFactoryLoader::update() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC4AA6: QFactoryLoader::QFactoryLoader(char const*, QString const&, Qt::CaseSensitivity) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A657: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 64 bytes in 1 blocks are indirectly lost in loss record 283 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x4BBDDB3: qRealloc(void*, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1A7FF: QString::realloc(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1ADB6: QString::append(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BDB252: QDateTime::toString(Qt::DateFormat) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCA55D: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC26FE: QFactoryLoader::updateDir(QString const&, QSettings&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC478B: QFactoryLoader::update() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC4AA6: QFactoryLoader::QFactoryLoader(char const*, QString const&, Qt::CaseSensitivity) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6DA8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x44F6FEC: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 68 bytes in 1 blocks are still reachable in loss record 284 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C9EF: _dl_map_object_deps (dl-deps.c:506)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 68 bytes in 1 blocks are still reachable in loss record 285 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x53F1161: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F1634: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F316D: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 68 bytes in 3 blocks are still reachable in loss record 286 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE53: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 68 bytes in 4 blocks are still reachable in loss record 287 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AF07: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 72 bytes in 1 blocks are still reachable in loss record 288 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x514F0C2: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 73 bytes in 1 blocks are still reachable in loss record 289 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDB848: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBAC27: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB340: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 73 bytes in 1 blocks are still reachable in loss record 290 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDB848: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB434: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 76 bytes in 1 blocks are still reachable in loss record 291 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53614AB: FcConfigCreate (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 76 bytes in 1 blocks are still reachable in loss record 292 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C9EF: _dl_map_object_deps (dl-deps.c:506)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 76 bytes in 1 blocks are still reachable in loss record 293 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53769F2: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5376B02: FcStrSetAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378339: FcConfigParseAndLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378780: FcConfigParseAndLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378A36: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 76 bytes in 1 blocks are still reachable in loss record 294 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C9EF: _dl_map_object_deps (dl-deps.c:506)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422105E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 76 bytes in 1 blocks are still reachable in loss record 295 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CF44A0: QObject::QObject(QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4209F58: QGuiPlatformPlugin::QGuiPlatformPlugin(QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x5B0F912: qt_plugin_instance (in /usr/lib/kde4/plugins/gui_platform/libkde.so)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 76 bytes in 1 blocks are still reachable in loss record 296 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C76E: _dl_map_object_deps (dl-deps.c:470)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 76 bytes in 1 blocks are still reachable in loss record 297 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CF44A0: QObject::QObject(QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44FDF88: QStylePlugin::QStylePlugin(QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x6E36D42: qt_plugin_instance (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 80 bytes in 1 blocks are still reachable in loss record 298 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC6FD1: QWaitCondition::QWaitCondition() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC257E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC35A9: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC59E9: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC2326: QThread::currentThread() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDE909: QCoreApplicationPrivate::QCoreApplicationPrivate(int&, char**, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x418A3F6: QApplicationPrivate::QApplicationPrivate(int&, char**, QApplication::Type, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x419695F: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 80 bytes in 2 blocks are still reachable in loss record 299 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDE05C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC9B3F: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECEA3B: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED81B8: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8320: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8F34: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED960E: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8048: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBFA35: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC0FC7: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED13EE: dbus_pending_call_block (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC01D0: dbus_connection_send_with_reply_and_block (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBAEB1: dbus_bus_register (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1CD: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147==
==32147== 80 bytes in 3 blocks are still reachable in loss record 300 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53752D8: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537678E: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5376843: FcStrCopyFilename (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5376B3F: FcStrSetAddFilename (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 84 bytes in 1 blocks are still reachable in loss record 301 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53F0D5E: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A4F: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 84 bytes in 1 blocks are still reachable in loss record 302 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C9EF: _dl_map_object_deps (dl-deps.c:506)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422276B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 84 bytes in 1 blocks are still reachable in loss record 303 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C9EF: _dl_map_object_deps (dl-deps.c:506)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220F4E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 84 bytes in 4 blocks are still reachable in loss record 304 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE67: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 88 bytes in 3 blocks are still reachable in loss record 305 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AF2F: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 88 bytes in 4 blocks are still reachable in loss record 306 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AEDF: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 96 bytes in 1 blocks are still reachable in loss record 307 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53F0D4B: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A4F: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 96 bytes in 1 blocks are still reachable in loss record 308 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400F787: _dl_check_map_versions (dl-version.c:299)
==32147== by 0x40125AA: dl_open_worker (dl-open.c:269)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220F4E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 96 bytes in 2 blocks are still reachable in loss record 309 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x518945D: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 96 bytes in 2 blocks are still reachable in loss record 310 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53ED919: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x3830322F: ???
==32147==
==32147== 96 bytes in 2 blocks are still reachable in loss record 311 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53ED919: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x2E313035: ???
==32147==
==32147== 96 bytes in 4 blocks are still reachable in loss record 312 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5189321: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 96 bytes in 6 blocks are still reachable in loss record 313 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5376891: FcStrSetCreate (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 96 bytes in 1 blocks are indirectly lost in loss record 314 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1A672: QString::realloc(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1A8E5: QString::realloc() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CAC31A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CAC387: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C618A7: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C61E58: QFileInfo::canonicalFilePath() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC26AD: QFactoryLoader::updateDir(QString const&, QSettings&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC478B: QFactoryLoader::update() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC4AA6: QFactoryLoader::QFactoryLoader(char const*, QString const&, Qt::CaseSensitivity) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6DA8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x44F6FEC: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 96 bytes in 1 blocks are indirectly lost in loss record 315 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C13F0B: QString::QString(int, Qt::Initialization) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCF154: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 108 bytes in 1 blocks are still reachable in loss record 316 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x514F0C2: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 108 bytes in 1 blocks are indirectly lost in loss record 317 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1A672: QString::realloc(int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C1A8E5: QString::realloc() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CAC31A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CAC387: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C618A7: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C61E58: QFileInfo::canonicalFilePath() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC26AD: QFactoryLoader::updateDir(QString const&, QSettings&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC478B: QFactoryLoader::update() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC4AA6: QFactoryLoader::QFactoryLoader(char const*, QString const&, Qt::CaseSensitivity) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A657: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 108 bytes in 1 blocks are indirectly lost in loss record 318 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4BBDEAC: qMalloc(unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4C13F0B: QString::QString(int, Qt::Initialization) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CCF154: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 112 bytes in 1 blocks are still reachable in loss record 319 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4BC3598: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC59E9: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4BC2326: QThread::currentThread() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CDE909: QCoreApplicationPrivate::QCoreApplicationPrivate(int&, char**, unsigned int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x418A3F6: QApplicationPrivate::QApplicationPrivate(int&, char**, QApplication::Type, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x419695F: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 120 bytes in 5 blocks are still reachable in loss record 320 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x537750D: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE53: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 120 bytes in 1 blocks are possibly lost in loss record 321 of 415
==32147== at 0x40268A4: memalign (vg_replace_malloc.c:694)
==32147== by 0x402695E: posix_memalign (vg_replace_malloc.c:835)
==32147== by 0x5117E40: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164EA7: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 124 bytes in 1 blocks are still reachable in loss record 322 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x6EDD8A8: dbus_malloc0 (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC9AB9: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECCE1A: dbus_message_new_signal (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBD1C9: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBEF99: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1B0: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 124 bytes in 1 blocks are still reachable in loss record 323 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x6EDD8A8: dbus_malloc0 (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC9AB9: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECAAEA: dbus_message_new_method_call (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBAE81: dbus_bus_register (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1CD: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 124 bytes in 1 blocks are still reachable in loss record 324 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x6EDD8A8: dbus_malloc0 (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC9AB9: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECDD51: dbus_message_new_error (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED0F83: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBFEE4: dbus_connection_send_with_reply (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC01B8: dbus_connection_send_with_reply_and_block (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBAEB1: dbus_bus_register (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1CD: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 128 bytes in 1 blocks are still reachable in loss record 325 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x536CB7E: FcFontSetAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5379473: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0x10: ???
==32147== by 0xE: ???
==32147==
==32147== 140 bytes in 7 blocks are still reachable in loss record 326 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53773AD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE53: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 140 bytes in 7 blocks are still reachable in loss record 327 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53773AD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE67: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 140 bytes in 7 blocks are indirectly lost in loss record 328 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5374013: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537489E: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5370705: FcFontRenderPrepare (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537095C: FcFontMatch (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x56C380F: ???
==32147==
==32147== 148 (56 direct, 92 indirect) bytes in 1 blocks are definitely lost in loss record 329 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CC8397: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90D7: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131BF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 148 (128 direct, 20 indirect) bytes in 1 blocks are definitely lost in loss record 330 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x537321A: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374149: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374242: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5379416: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0x12: ???
==32147== by 0x10: ???
==32147== by 0xE: ???
==32147==
==32147== 152 bytes in 7 blocks are still reachable in loss record 331 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53752D8: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 158 (56 direct, 102 indirect) bytes in 1 blocks are definitely lost in loss record 332 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CC8397: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90D7: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422274F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 158 (56 direct, 102 indirect) bytes in 1 blocks are definitely lost in loss record 333 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CC8397: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90D7: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7D79: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 160 bytes in 1 blocks are still reachable in loss record 334 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x6EDD906: dbus_realloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDD9C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDE56D: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC7625: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC7A7B: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC4D74: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC54B4: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EFAD07: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147==
==32147== 160 bytes in 1 blocks are still reachable in loss record 335 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x6EDD906: dbus_realloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDD9C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDEA0: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x14: ???
==32147==
==32147== 160 bytes in 9 blocks are still reachable in loss record 336 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0xD: ???
==32147== by 0xC: ???
==32147== by 0x7: ???
==32147==
==32147== 162 (56 direct, 106 indirect) bytes in 1 blocks are definitely lost in loss record 337 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CC8397: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90D7: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220F2C: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 164 (56 direct, 108 indirect) bytes in 1 blocks are definitely lost in loss record 338 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CC8397: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90D7: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131BF: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 166 (56 direct, 110 indirect) bytes in 1 blocks are definitely lost in loss record 339 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CC8397: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC90D7: QLibrary::setFileNameAndVersion(QString const&, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC9194: QLibrary::QLibrary(QString const&, int, QObject*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422103C: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 182 bytes in 3 blocks are still reachable in loss record 340 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x53EE693: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF269: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF380: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF684: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 205 bytes in 4 blocks are still reachable in loss record 341 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x4005933: open_path (dl-load.c:2227)
==32147== by 0x40079D3: _dl_map_object (dl-load.c:2394)
==32147== by 0x400D48B: openaux (dl-deps.c:65)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x400C701: _dl_map_object_deps (dl-deps.c:247)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 223 bytes in 1 blocks are still reachable in loss record 342 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x6EDD906: dbus_realloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDD9C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDEA0: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0xD2: ???
==32147==
==32147== 232 bytes in 10 blocks are still reachable in loss record 343 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537810B: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 236 bytes in 14 blocks are still reachable in loss record 344 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x536EAFF: FcObjectSetAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x4425024: QFontDatabase::load(QFontPrivate const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x43FA200: QFontPrivate::engineForScript(int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x44133DE: QFontMetrics::height() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469AA45: QStatusBar::reformat() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469B60D: QStatusBar::setSizeGripEnabled(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469B8AB: QStatusBar::QStatusBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A8B8: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 239 bytes in 8 blocks are still reachable in loss record 345 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53752D8: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537678E: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5376B3F: FcStrSetAddFilename (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363C57: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363CF4: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363F5F: FcConfigBuildFonts (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 240 bytes in 2 blocks are still reachable in loss record 346 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400F787: _dl_check_map_versions (dl-version.c:299)
==32147== by 0x40125AA: dl_open_worker (dl-open.c:269)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 248 bytes in 1 blocks are still reachable in loss record 347 of 415
==32147== at 0x40268A4: memalign (vg_replace_malloc.c:694)
==32147== by 0x402695E: posix_memalign (vg_replace_malloc.c:835)
==32147== by 0x5117E40: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164EA7: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x511BD99: g_ptr_array_sized_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 248 bytes in 1 blocks are still reachable in loss record 348 of 415
==32147== at 0x40268A4: memalign (vg_replace_malloc.c:694)
==32147== by 0x402695E: posix_memalign (vg_replace_malloc.c:835)
==32147== by 0x5117E40: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164EA7: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5146AA5: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147706: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 248 bytes in 2 blocks are still reachable in loss record 349 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x6EDD8A8: dbus_malloc0 (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC9AB9: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECEA3B: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED81B8: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8320: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8F34: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED960E: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8048: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBFA35: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC0FC7: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED13EE: dbus_pending_call_block (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC01D0: dbus_connection_send_with_reply_and_block (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBAEB1: dbus_bus_register (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1CD: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 256 bytes in 1 blocks are still reachable in loss record 350 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x535F0C1: FcBlanksAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5379519: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x553605A: ??? (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5536D81: ??? (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5533BF0: ??? (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5535631: ??? (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5538A4A: XML_ParseBuffer (in /lib/i386-linux-gnu/libexpat.so.1.6.0)
==32147== by 0x5378490: FcConfigParseAndLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x536CDA5: FcInitLoadConfig (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 256 bytes in 1 blocks are still reachable in loss record 351 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x536CB24: FcFontSetAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363BE7: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363CF4: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5363F5F: FcConfigBuildFonts (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 256 bytes in 1 blocks are still reachable in loss record 352 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400F787: _dl_check_map_versions (dl-version.c:299)
==32147== by 0x40125AA: dl_open_worker (dl-open.c:269)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7D9F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 256 bytes in 2 blocks are still reachable in loss record 353 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x6EDD906: dbus_realloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDD9C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDEA0: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDFFD: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC5A54: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ECEAB7: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED81B8: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8320: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8F34: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED960E: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED8048: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBFA35: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC0FC7: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED13EE: dbus_pending_call_block (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC01D0: dbus_connection_send_with_reply_and_block (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBAEB1: dbus_bus_register (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EBB1CD: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699184B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993ADE: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147==
==32147== 264 bytes in 11 blocks are still reachable in loss record 354 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x537750D: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 280 bytes in 14 blocks are still reachable in loss record 355 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53773AD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0x15: ???
==32147== by 0x6: ???
==32147==
==32147== 288 bytes in 12 blocks are still reachable in loss record 356 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0xD: ???
==32147== by 0xB: ???
==32147== by 0x7: ???
==32147==
==32147== 312 (56 direct, 256 indirect) bytes in 1 blocks are definitely lost in loss record 357 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CC8397: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC26BF: QFactoryLoader::updateDir(QString const&, QSettings&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC478B: QFactoryLoader::update() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC4AA6: QFactoryLoader::QFactoryLoader(char const*, QString const&, Qt::CaseSensitivity) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6DA8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x44F6FEC: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 320 bytes in 1 blocks are still reachable in loss record 358 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x6EDD906: dbus_realloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDDD9C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EDE56D: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC7625: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC7A7B: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC4D74: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EC587A: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EFAD07: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147==
==32147== 336 bytes in 14 blocks are still reachable in loss record 359 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x6EDD870: dbus_malloc (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EE43E5: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6ED71F0: dbus_threads_init (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x6EE480C: ??? (in /lib/i386-linux-gnu/libdbus-1.so.3.7.1)
==32147== by 0x699D4FA: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6993A9B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 336 bytes in 28 blocks are still reachable in loss record 360 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5361CD7: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378AFA: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 336 (56 direct, 280 indirect) bytes in 1 blocks are definitely lost in loss record 361 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CC8397: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC26BF: QFactoryLoader::updateDir(QString const&, QSettings&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC478B: QFactoryLoader::update() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC4AA6: QFactoryLoader::QFactoryLoader(char const*, QString const&, Qt::CaseSensitivity) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A657: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 360 bytes in 3 blocks are possibly lost in loss record 362 of 415
==32147== at 0x40268A4: memalign (vg_replace_malloc.c:694)
==32147== by 0x402695E: posix_memalign (vg_replace_malloc.c:835)
==32147== by 0x5117E40: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164ECE: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 400 bytes in 50 blocks are still reachable in loss record 363 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED803: _XlcAddCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED5A3: _XlcAddCT (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED60E: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 400 bytes in 20 blocks are indirectly lost in loss record 364 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5374013: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537489E: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53705C6: FcFontRenderPrepare (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537095C: FcFontMatch (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x56C380F: ???
==32147==
==32147== 428 bytes in 1 blocks are still reachable in loss record 365 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C9EF: _dl_map_object_deps (dl-deps.c:506)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 436 bytes in 1 blocks are still reachable in loss record 366 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C9EF: _dl_map_object_deps (dl-deps.c:506)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 492 bytes in 41 blocks are still reachable in loss record 367 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x537196F: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5371889: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 504 bytes in 1 blocks are still reachable in loss record 368 of 415
==32147== at 0x40268A4: memalign (vg_replace_malloc.c:694)
==32147== by 0x402695E: posix_memalign (vg_replace_malloc.c:835)
==32147== by 0x5117E40: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164EA7: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164F65: g_slice_alloc0 (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 508 bytes in 1 blocks are still reachable in loss record 369 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x514F0C2: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x514F78A: g_malloc0 (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x514FA4A: g_malloc0_n (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5117C22: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164B3C: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 508 bytes in 1 blocks are still reachable in loss record 370 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x514F0C2: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x514F78A: g_malloc0 (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x514FA4A: g_malloc0_n (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5117C44: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164B3C: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 508 bytes in 1 blocks are still reachable in loss record 371 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x514F0C2: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x514F78A: g_malloc0 (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x514FA4A: g_malloc0_n (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5117C66: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164B3C: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 538 bytes in 19 blocks are still reachable in loss record 372 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x40048EE: local_strdup (dl-load.c:162)
==32147== by 0x4007774: _dl_map_object (dl-load.c:2466)
==32147== by 0x400D48B: openaux (dl-deps.c:65)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x400C701: _dl_map_object_deps (dl-deps.c:247)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 544 bytes in 1 blocks are still reachable in loss record 373 of 415
==32147== at 0x4027E54: operator new(unsigned int) (vg_replace_malloc.c:282)
==32147== by 0x4CF7C73: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CF8665: QObject::connect(QObject const*, char const*, QObject const*, char const*, Qt::ConnectionType) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x5B0F94F: qt_plugin_instance (in /usr/lib/kde4/plugins/gui_platform/libkde.so)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 583 bytes in 16 blocks are still reachable in loss record 374 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5375478: FcStrCopy (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5376AEF: FcStrSetAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378339: FcConfigParseAndLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378780: FcConfigParseAndLoad (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378A36: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 627 bytes in 1 blocks are still reachable in loss record 375 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221160: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 631 bytes in 1 blocks are still reachable in loss record 376 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422276B: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 631 bytes in 1 blocks are still reachable in loss record 377 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7EAF: QLibrary::resolve(char const*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x42131DB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x42225D8: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 631 bytes in 1 blocks are still reachable in loss record 378 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x69E7D9F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x699395B: QDBusConnection::connectToBus(QDBusConnection::BusType, QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x69953B6: QDBusConnection::sessionBus() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtDBus.so.4.8.1)
==32147== by 0x6E4191F: ??? (in /usr/lib/kde4/plugins/styles/oxygen.so)
==32147== by 0x7B: ???
==32147==
==32147== 632 bytes in 1 blocks are still reachable in loss record 379 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4220F4E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 633 bytes in 1 blocks are still reachable in loss record 380 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x422105E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 633 bytes in 49 blocks are still reachable in loss record 381 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED9C7: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED58F: _XlcAddCT (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED60E: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 636 bytes in 1 blocks are still reachable in loss record 382 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x400D48B: openaux (dl-deps.c:65)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x400C701: _dl_map_object_deps (dl-deps.c:247)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 655 bytes in 1 blocks are still reachable in loss record 383 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x44F6FF8: QStyleFactory::create(QString const&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x418CDFC: QApplication::style() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4218EDE: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 661 bytes in 1 blocks are still reachable in loss record 384 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x4012066: dl_open_worker (dl-open.c:226)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 704 bytes in 88 blocks are still reachable in loss record 385 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EE763: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF269: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF380: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF684: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 743 bytes in 23 blocks are still reachable in loss record 386 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400A68A: _dl_new_object (dl-object.c:161)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x400D48B: openaux (dl-deps.c:65)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x400C701: _dl_map_object_deps (dl-deps.c:247)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== 744 bytes in 3 blocks are still reachable in loss record 387 of 415
==32147== at 0x40268A4: memalign (vg_replace_malloc.c:694)
==32147== by 0x402695E: posix_memalign (vg_replace_malloc.c:835)
==32147== by 0x5117E40: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164ECE: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5146AA5: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147706: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 802 bytes in 88 blocks are still reachable in loss record 388 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EE78C: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF269: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF380: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF684: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 816 bytes in 17 blocks are still reachable in loss record 389 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53F1137: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F1634: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F316D: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 836 (256 direct, 580 indirect) bytes in 1 blocks are definitely lost in loss record 390 of 415
==32147== at 0x40283EE: realloc (vg_replace_malloc.c:632)
==32147== by 0x537314C: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374149: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537489E: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53705C6: FcFontRenderPrepare (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537095C: FcFontMatch (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x56C380F: ???
==32147==
==32147== 1,028 bytes in 50 blocks are still reachable in loss record 391 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED95D: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED58F: _XlcAddCT (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED60E: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,092 bytes in 91 blocks are still reachable in loss record 392 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x500D30F: strdup (strdup.c:43)
==32147== by 0x53EF088: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF380: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF684: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,240 bytes in 5 blocks are possibly lost in loss record 393 of 415
==32147== at 0x40268A4: memalign (vg_replace_malloc.c:694)
==32147== by 0x402695E: posix_memalign (vg_replace_malloc.c:835)
==32147== by 0x5117E40: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164ECE: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x511BD99: g_ptr_array_sized_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,341 bytes in 91 blocks are still reachable in loss record 394 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x500D30F: strdup (strdup.c:43)
==32147== by 0x53EF1E2: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF380: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF684: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,472 bytes in 1 blocks are still reachable in loss record 395 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53EF778: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,508 bytes in 23 blocks are still reachable in loss record 396 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x400C76E: _dl_map_object_deps (dl-deps.c:470)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,512 bytes in 3 blocks are still reachable in loss record 397 of 415
==32147== at 0x40268A4: memalign (vg_replace_malloc.c:694)
==32147== by 0x402695E: posix_memalign (vg_replace_malloc.c:835)
==32147== by 0x5117E40: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164ECE: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164F65: g_slice_alloc0 (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,631 bytes in 50 blocks are still reachable in loss record 398 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53ED33E: _XlcAddCT (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED60E: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,820 bytes in 91 blocks are still reachable in loss record 399 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53EF06E: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF380: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53EF684: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 1,896 bytes in 158 blocks are still reachable in loss record 400 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5361CD7: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x537A0C1: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 1,920 bytes in 92 blocks are still reachable in loss record 401 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378BCF: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 2,040 bytes in 1 blocks are still reachable in loss record 402 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x514F0C2: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x514F78A: g_malloc0 (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5117D1E: ??? (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5164B3C: g_slice_alloc (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x51658CA: g_slist_prepend (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x516DF6A: g_once_init_enter (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x5147745: g_main_context_new (in /lib/i386-linux-gnu/libglib-2.0.so.0.3200.3)
==32147== by 0x424D5DC: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x424D6D2: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x420FEAB: QApplicationPrivate::createEventDispatcher() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4CE16AB: QCoreApplication::init() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CE17B3: QCoreApplication::QCoreApplication(QCoreApplicationPrivate&) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x419696B: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 2,048 bytes in 1 blocks are still reachable in loss record 403 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53EF881: _XlcCreateLocaleDataBase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3CBB: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 2,400 bytes in 50 blocks are still reachable in loss record 404 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53ED919: _XlcCreateDefaultCharSet (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED58F: _XlcAddCT (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53ED60E: _XlcInitCTInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3BB0: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3162: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53F3A6B: _XlcCreateLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x5416757: _XlcUtf8Loader (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FB7EC: _XOpenLC (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53FBA7A: _XrmInitParseInfo (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 3,160 bytes in 158 blocks are still reachable in loss record 405 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53773AD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 4,088 bytes in 1 blocks are still reachable in loss record 406 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5361663: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x53780F3: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5378170: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6C63F: ???
==32147== by 0x14: ???
==32147== by 0x6: ???
==32147==
==32147== 4,088 bytes in 1 blocks are still reachable in loss record 407 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5361663: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0xBED6AE3F: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 4,088 bytes in 1 blocks are still reachable in loss record 408 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5361663: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5619E97: ???
==32147== by 0xD: ???
==32147== by 0xA: ???
==32147== by 0x7: ???
==32147==
==32147== 4,096 bytes in 1 blocks are still reachable in loss record 409 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x53D3162: _XrmInternalStringToQuark (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53E4FDE: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53E61D4: XrmGetStringDatabase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 4,464 bytes in 186 blocks are still reachable in loss record 410 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x537750D: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147==
==32147== 4,848 bytes in 24 blocks are still reachable in loss record 411 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400F787: _dl_check_map_versions (dl-version.c:299)
==32147== by 0x40125AA: dl_open_worker (dl-open.c:269)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x421A67A: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4221C55: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 7,756 bytes in 200 blocks are still reachable in loss record 412 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x5373ECD: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5373FC7: FcValueSave (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374077: ??? (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x5374576: FcPatternAdd (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x536F6A1: FcFontSetList (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x536F94C: FcFontList (in /usr/lib/i386-linux-gnu/libfontconfig.so.1.5.0)
==32147== by 0x4425024: QFontDatabase::load(QFontPrivate const*, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x43FA200: QFontPrivate::engineForScript(int) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x44133DE: QFontMetrics::height() const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469AA45: QStatusBar::reformat() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469B60D: QStatusBar::setSizeGripEnabled(bool) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x469B8AB: QStatusBar::QStatusBar(QWidget*) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A8B8: MainWindow::MainWindow(QWidget*) (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147== by 0x804A541: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 8,176 bytes in 1 blocks are still reachable in loss record 413 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53D2F23: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53D331E: _XrmInternalStringToQuark (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53D3501: XrmPermStringToQuark (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 8,176 bytes in 1 blocks are still reachable in loss record 414 of 415
==32147== at 0x4028308: malloc (vg_replace_malloc.c:263)
==32147== by 0x53D2F23: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53D33F3: _XrmInternalStringToQuark (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53E4FDE: ??? (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x53E61D4: XrmGetStringDatabase (in /usr/lib/i386-linux-gnu/libX11.so.6.3.0)
==32147== by 0x42212E3: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x41959B7: QApplicationPrivate::construct(_XDisplay*, unsigned long, unsigned long) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4196999: QApplication::QApplication(int&, char**, int) (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x804A531: main (in /home/hostilefork/testing-build-desktop-Qt_4_8_1__gcc__Release/testing)
==32147==
==32147== 14,526 bytes in 23 blocks are still reachable in loss record 415 of 415
==32147== at 0x4026A68: calloc (vg_replace_malloc.c:566)
==32147== by 0x400A452: _dl_new_object (dl-object.c:77)
==32147== by 0x4005C07: _dl_map_object_from_fd (dl-load.c:1047)
==32147== by 0x40074BA: _dl_map_object (dl-load.c:2561)
==32147== by 0x400D48B: openaux (dl-deps.c:65)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x400C701: _dl_map_object_deps (dl-deps.c:247)
==32147== by 0x40120C2: dl_open_worker (dl-open.c:263)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x4011B05: _dl_open (dl-open.c:633)
==32147== by 0x54DBC2A: dlopen_doit (dlopen.c:67)
==32147== by 0x400DDE5: _dl_catch_error (dl-error.c:178)
==32147== by 0x54DC0BB: _dlerror_run (dlerror.c:164)
==32147== by 0x54DBB60: dlopen@@GLIBC_2.1 (dlopen.c:88)
==32147== by 0x4CCF064: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC7CAB: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC8A0F: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x4CC186E: QFactoryLoader::instance(QString const&) const (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtCore.so.4.8.1)
==32147== by 0x420A66E: ??? (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147== by 0x4217A22: QApplicationPrivate::x11_apply_settings() (in /opt/QtSDK/Desktop/Qt/4.8.1/gcc/lib/libQtGui.so.4.8.1)
==32147==
==32147== LEAK SUMMARY:
==32147== definitely lost: 848 bytes in 11 blocks
==32147== indirectly lost: 1,756 bytes in 53 blocks
==32147== possibly lost: 1,720 bytes in 9 blocks
==32147== still reachable: 121,019 bytes in 2,257 blocks
==32147== suppressed: 0 bytes in 0 blocks
==32147==
==32147== For counts of detected and suppressed errors, rerun with: -v
==32147== ERROR SUMMARY: 14 errors from 14 contexts (suppressed: 141 from 10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment