[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#603052: marked as done (qt4-x11: Potential buffer overrun in ALSA QAudioInput)



Your message dated Sun, 05 Dec 2010 19:07:39 +0000
with message-id <E1PPJvv-000085-9o@franck.debian.org>
and subject line Bug#603052: fixed in qt4-x11 4:4.7.1-1
has caused the Debian Bug report #603052,
regarding qt4-x11: Potential buffer overrun in ALSA QAudioInput
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
603052: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603052
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: qt4-x11
Version: 4:4.6.3-4
Severity: important
Tags: patch upstream fixed-upstream
Forwarded: http://bugreports.qt.nokia.com/browse/QTBUG-14549

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

qint64 QAudioInputPrivate::read(char* data, qint64 len) in
qaudioinput_alsa_p.cpp ignores the len parameter, leading to a
potential buffer overflow in data.

Upstream bug:
http://bugreports.qt.nokia.com/browse/QTBUG-14549

Upstream commit:
http://qt.gitorious.org/+qt-developers/qt/staging/commit/e3f1268e63064a54215051cf91d5f6b8c8bd4f0f

Upstream raw patch:
http://qt.gitorious.org/+qt-developers/qt/staging/commit/e3f1268e63064a54215051cf91d5f6b8c8bd4f0f.patch


The patch is against 4.7.1 and doesn't apply cleanly against 4.6.3; I
tried to adapt it for 4.6.3 (attached), hope I got it right :)


Cheers,
gregor

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCAAGBQJM2tY9AAoJELs6aAGGSaoGwU4QAILIF+OF/3jsYlNC0/al4WzR
Z35VzBBprK2ghZZY2MMNhoaCgQW7J3ShdVVDZs/vI0p/QwEH9Rs0UNVzQ2MGGQIt
iZnfcliRtzNONnsm3z3ydHFxS2+zxW0FUYh4lj6SE3Ws9h/qGY9Qm+ME2+T3vRt9
vK6F/vDpnqBsCS+1G1ompjHdUIIadla2d4xl7/He0RAti1Ip80qYZ5V+788VPBU9
3Km8cFAqCa9NdQJaAUEKZi3U88VuxOyuvK7pcmxk1S+jNrws3D8MU/crKqz5lHO8
2B4mY4pdOejLeywhyjNjM5KPVJfQ0FHtsKasL/n3MCMd9teukonOHqRDEe9q7WjZ
JwiWfOaMV1uDNwHnzS/QVE0elxEEkx5fIe4AtHdOQh5BcBlppkoJtQAqy9URlU1p
HGB8gn42Ke8Ae1+YMoetphREt7zFQ0AZ1+nyK/4Ckhty0y3Nkoc3nOJcCfwW5USY
wfB23ur5tu1k3oxK/CxpH0UYnBcRcASDUgkjCb1lIH3k3Jehkef8xih3cdoQdN83
2C5gcRF685X4AojeX8vD3ZiCedAwFCA9bCckRFImBTVWfwMm1LUs1N9b3CPAOgew
lkCz2cLMbRUbMjN2pD/yQYf3alXyBhp7hLergK07HTitvpAX4Xb0bn5z8cgWun0a
zEs5qxkRReStwgZV0YSi
=Myzp
-----END PGP SIGNATURE-----
>From e3f1268e63064a54215051cf91d5f6b8c8bd4f0f Mon Sep 17 00:00:00 2001
From: Andrew den Exter <andrew.den-exter@nokia.com>
Date: Tue, 9 Nov 2010 16:30:32 +1000
Subject: [PATCH] Fix potential buffer overrun in ALSA QAudioInput implementation.

Don't write more than the supplied max buffer size to the output buffer.

Task-number: QTBUG-14549 QTBUG-8578
Reviewed-by: Derick Hawcroft
---
 src/multimedia/audio/qaudioinput_alsa_p.cpp |   21 ++++++++++++---------
 1 files changed, 12 insertions(+), 9 deletions(-)

--- a/src/multimedia/audio/qaudioinput_alsa_p.cpp
+++ b/src/multimedia/audio/qaudioinput_alsa_p.cpp
@@ -454,19 +454,18 @@
 
 qint64 QAudioInputPrivate::read(char* data, qint64 len)
 {
-    Q_UNUSED(len)
-
     // Read in some audio data and write it to QIODevice, pull mode
     if ( !handle )
         return 0;
 
-    bytesAvailable = bytesReady();
+    // bytesAvaiable is saved as a side effect of bytesReady().
+    int bytesToRead = bytesReady();
 
-    if (bytesAvailable < 0) {
+    if (bytesToRead < 0) {
         // bytesAvailable as negative is error code, try to recover from it.
-        xrun_recovery(bytesAvailable);
-        bytesAvailable = bytesReady();
-        if (bytesAvailable < 0) {
+        xrun_recovery(bytesToRead);
+        bytesToRead = bytesReady();
+        if (bytesToRead < 0) {
             // recovery failed must stop and set error.
             close();
             errorState = QAudio::IOError;
@@ -476,9 +475,11 @@
         }
     }
 
+    bytesToRead = qMin<qint64>(len, bytesToRead);
+    bytesToRead -= bytesToRead % period_size;
     int count=0, err = 0;
     while(count < 5) {
-        int chunks = bytesAvailable/period_size;
+        int chunks = bytesToRead/period_size;
         int frames = chunks*period_frames;
         if(frames > (int)buffer_frames)
             frames = buffer_frames;
@@ -526,6 +527,7 @@
                     emit stateChanged(deviceState);
                 }
             } else {
+                bytesAvailable -= err;
                 totalTimeValue += err;
                 resuming = false;
                 if (deviceState != QAudio::ActiveState) {
@@ -538,6 +540,7 @@
 
         } else {
             memcpy(data,audioBuffer,err);
+            bytesAvailable -= err;
             totalTimeValue += err;
             resuming = false;
             if (deviceState != QAudio::ActiveState) {
@@ -633,7 +636,7 @@
 {
     if(pullMode) {
         // reads some audio data and writes it to QIODevice
-        read(0,0);
+        read(0, buffer_size);
     } else {
         // emits readyRead() so user will call read() on QIODevice to get some audio data
         InputPrivate* a = qobject_cast<InputPrivate*>(audioSource);

--- End Message ---
--- Begin Message ---
Source: qt4-x11
Source-Version: 4:4.7.1-1

We believe that the bug you reported is fixed in the latest version of
qt4-x11, which is due to be installed in the Debian FTP archive:

libqt4-assistant_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-assistant_4.7.1-1_amd64.deb
libqt4-core_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-core_4.7.1-1_amd64.deb
libqt4-dbg_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-dbg_4.7.1-1_amd64.deb
libqt4-dbus_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-dbus_4.7.1-1_amd64.deb
libqt4-declarative-folderlistmodel_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-declarative-folderlistmodel_4.7.1-1_amd64.deb
libqt4-declarative-gestures_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-declarative-gestures_4.7.1-1_amd64.deb
libqt4-declarative-particles_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-declarative-particles_4.7.1-1_amd64.deb
libqt4-declarative_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-declarative_4.7.1-1_amd64.deb
libqt4-designer_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-designer_4.7.1-1_amd64.deb
libqt4-dev_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-dev_4.7.1-1_amd64.deb
libqt4-gui_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-gui_4.7.1-1_amd64.deb
libqt4-help_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-help_4.7.1-1_amd64.deb
libqt4-network_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-network_4.7.1-1_amd64.deb
libqt4-opengl-dev_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-opengl-dev_4.7.1-1_amd64.deb
libqt4-opengl_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-opengl_4.7.1-1_amd64.deb
libqt4-phonon_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-phonon_4.7.1-1_amd64.deb
libqt4-qt3support_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-qt3support_4.7.1-1_amd64.deb
libqt4-script_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-script_4.7.1-1_amd64.deb
libqt4-scripttools_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-scripttools_4.7.1-1_amd64.deb
libqt4-sql-ibase_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-sql-ibase_4.7.1-1_amd64.deb
libqt4-sql-mysql_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-sql-mysql_4.7.1-1_amd64.deb
libqt4-sql-odbc_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-sql-odbc_4.7.1-1_amd64.deb
libqt4-sql-psql_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-sql-psql_4.7.1-1_amd64.deb
libqt4-sql-sqlite2_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-sql-sqlite2_4.7.1-1_amd64.deb
libqt4-sql-sqlite_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-sql-sqlite_4.7.1-1_amd64.deb
libqt4-sql-tds_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-sql-tds_4.7.1-1_amd64.deb
libqt4-sql_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-sql_4.7.1-1_amd64.deb
libqt4-svg_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-svg_4.7.1-1_amd64.deb
libqt4-test_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-test_4.7.1-1_amd64.deb
libqt4-webkit-dbg_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-webkit-dbg_4.7.1-1_amd64.deb
libqt4-webkit_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-webkit_4.7.1-1_amd64.deb
libqt4-xml_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-xml_4.7.1-1_amd64.deb
libqt4-xmlpatterns-dbg_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-xmlpatterns-dbg_4.7.1-1_amd64.deb
libqt4-xmlpatterns_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqt4-xmlpatterns_4.7.1-1_amd64.deb
libqtcore4_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqtcore4_4.7.1-1_amd64.deb
libqtgui4_4.7.1-1_amd64.deb
  to main/q/qt4-x11/libqtgui4_4.7.1-1_amd64.deb
qt4-demos-dbg_4.7.1-1_amd64.deb
  to main/q/qt4-x11/qt4-demos-dbg_4.7.1-1_amd64.deb
qt4-demos_4.7.1-1_amd64.deb
  to main/q/qt4-x11/qt4-demos_4.7.1-1_amd64.deb
qt4-designer_4.7.1-1_amd64.deb
  to main/q/qt4-x11/qt4-designer_4.7.1-1_amd64.deb
qt4-dev-tools_4.7.1-1_amd64.deb
  to main/q/qt4-x11/qt4-dev-tools_4.7.1-1_amd64.deb
qt4-doc-html_4.7.1-1_all.deb
  to main/q/qt4-x11/qt4-doc-html_4.7.1-1_all.deb
qt4-doc_4.7.1-1_all.deb
  to main/q/qt4-x11/qt4-doc_4.7.1-1_all.deb
qt4-qmake_4.7.1-1_amd64.deb
  to main/q/qt4-x11/qt4-qmake_4.7.1-1_amd64.deb
qt4-qmlviewer_4.7.1-1_amd64.deb
  to main/q/qt4-x11/qt4-qmlviewer_4.7.1-1_amd64.deb
qt4-qtconfig_4.7.1-1_amd64.deb
  to main/q/qt4-x11/qt4-qtconfig_4.7.1-1_amd64.deb
qt4-x11_4.7.1-1.debian.tar.gz
  to main/q/qt4-x11/qt4-x11_4.7.1-1.debian.tar.gz
qt4-x11_4.7.1-1.dsc
  to main/q/qt4-x11/qt4-x11_4.7.1-1.dsc
qt4-x11_4.7.1.orig.tar.gz
  to main/q/qt4-x11/qt4-x11_4.7.1.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 603052@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> (supplier of updated qt4-x11 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sun, 05 Dec 2010 19:50:11 +0200
Source: qt4-x11
Binary: libqtcore4 libqt4-core libqtgui4 libqt4-gui libqt4-network libqt4-opengl libqt4-script libqt4-scripttools libqt4-sql libqt4-sql-ibase libqt4-sql-mysql libqt4-sql-odbc libqt4-sql-psql libqt4-sql-sqlite libqt4-sql-sqlite2 libqt4-sql-tds libqt4-svg libqt4-webkit libqt4-xml libqt4-xmlpatterns libqt4-dbus libqt4-qt3support libqt4-designer libqt4-help libqt4-assistant libqt4-test libqt4-phonon libqt4-declarative libqt4-declarative-folderlistmodel libqt4-declarative-gestures libqt4-declarative-particles libqt4-dev libqt4-opengl-dev libqt4-dbg libqt4-webkit-dbg libqt4-xmlpatterns-dbg qt4-demos-dbg qt4-designer qt4-dev-tools qt4-qmake qt4-qtconfig qt4-demos qt4-qmlviewer qt4-doc qt4-doc-html
Architecture: source amd64 all
Version: 4:4.7.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Changed-By: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Description: 
 libqt4-assistant - transitional package for Qt 4 assistant module
 libqt4-core - transitional package for Qt 4 core non-GUI runtime libraries
 libqt4-dbg - Qt 4 library debugging symbols
 libqt4-dbus - Qt 4 D-Bus module
 libqt4-declarative - Qt 4 Declarative module
 libqt4-declarative-folderlistmodel - Qt 4 folderlistmodel QML plugin
 libqt4-declarative-gestures - Qt 4 gestures QML plugin
 libqt4-declarative-particles - Qt 4 particles QML plugin
 libqt4-designer - Qt 4 designer module
 libqt4-dev - Qt 4 development files
 libqt4-gui - transitional package for Qt 4 GUI runtime libraries
 libqt4-help - Qt 4 help module
 libqt4-network - Qt 4 network module
 libqt4-opengl - Qt 4 OpenGL module
 libqt4-opengl-dev - Qt 4 OpenGL library development files
 libqt4-phonon - Qt 4 Phonon module
 libqt4-qt3support - Qt 3 compatibility library for Qt 4
 libqt4-script - Qt 4 script module
 libqt4-scripttools - Qt 4 script tools module
 libqt4-sql - Qt 4 SQL module
 libqt4-sql-ibase - Qt 4 InterBase/FireBird database driver
 libqt4-sql-mysql - Qt 4 MySQL database driver
 libqt4-sql-odbc - Qt 4 ODBC database driver
 libqt4-sql-psql - Qt 4 PostgreSQL database driver
 libqt4-sql-sqlite - Qt 4 SQLite 3 database driver
 libqt4-sql-sqlite2 - Qt 4 SQLite 2 database driver
 libqt4-sql-tds - Qt 4 FreeTDS database driver
 libqt4-svg - Qt 4 SVG module
 libqt4-test - Qt 4 test module
 libqt4-webkit - transitional package for Qt 4 WebKit module
 libqt4-webkit-dbg - transitional package for Qt 4 WebKit debugging symbols
 libqt4-xml - Qt 4 XML module
 libqt4-xmlpatterns - Qt 4 XML patterns module
 libqt4-xmlpatterns-dbg - Qt 4 XML patterns library debugging symbols
 libqtcore4 - Qt 4 core module
 libqtgui4  - Qt 4 GUI module
 qt4-demos  - Qt 4 examples and demos
 qt4-demos-dbg - Qt 4 examples and demos debugging symbols
 qt4-designer - graphical designer for Qt 4 applications
 qt4-dev-tools - Qt 4 development tools
 qt4-doc    - Qt 4 API documentation
 qt4-doc-html - Qt 4 API documentation (HTML format)
 qt4-qmake  - Qt 4 qmake Makefile generator tool
 qt4-qmlviewer - Qt 4 QML viewer
 qt4-qtconfig - Qt 4 configuration tool
Closes: 599635 603052 605364
Changes: 
 qt4-x11 (4:4.7.1-1) experimental; urgency=low
 .
   * New upstream release. (Closes: #605364)
 .
   [ Fathi Boudra ]
   * Remove patches:
     - 0001_webkit_self_injection_into_qt_configuration.patch - stolen upstream
     - 0002_fix_qstatictext_with_opengl1_engine.patch - stolen upstream
     - 0003_add_three_new_style-hints_to_qfont.patch - stolen upstream
     - 0004_fix_qstatictext_copy_constructor.patch - stolen upstream
   * Refresh patches.
   * Update installed files.
   * Update symbols files.
 .
   [ Pino Toscano ]
   * Rework and replace patch 50_kfreebsd_build_fix.diff with two new patches:
     - 22_use___GLIBC__.diff: use __GLIBC__ instead of Q_OS_LINUX for GLIBC
       functions
     - 50_kfreebsd_Q_OS.diff: define Q_OS_FREEBSD_KERNEL for kFreeBSD
   * Add a new patch 01_debian_append_qt4_suffix.diff, which contains all the
     changes for appending the -qt4 suffix to various tools; it is the result
     of the merge of the following patches (which are removed, as obsolete):
     - 01_qmake_for_debian.diff
     - 02_launch_assistant-qt4.diff
     - 03_launch_moc-qt4.diff
     - 04_launch_uic-qt4.diff
     - 05_append_qt4_target.diff
   * Demote qt4-qtconfig from recommend to suggest of libqtgui4.
     (Closes: #599635)
   * Remove sharutils from Build-Depends, as there is no more need to uudecode
     binaries at install time.
 .
   [ Modestas Vainius ]
   * Merge revisions from 4:4.6.3-1 to 4:4.6.3-4:
     - refresh 23_permit_plugins_built_with_future_qt.diff patch;
     - bump libqt4-dbus Replaces/Breaks against libqt4-dev to << 4:4.7.1 because
       4:4.7.0~rc1-1 still has dbus.1 manpage misplaced;
     - remove merged patches which were backported from upstream:
       - 0005_fix_detection_of_headers_files.diff
       - 0006_webkit_propriotary_flash_init_gtk_first.diff
       - 0007_qsslsocket_improve_error_handling_CVE-2010-2621.patch
       - 22_fix_disappearing_cursor.diff
   * Bump debian/compat to 7. This source package uses dh v7.
   * Confirm symbol files for 4.7.0~rc1 on alpha armel hurd-i386 i386 ia64
     kfreebsd-amd64 kfreebsd-i386 mipsel powerpc sparc (based on experimental
     build logs).
   * Drop a couple of patches as recommended by Thiago and Jonathan:
     - 0180-window-role.diff - rejected by upstream, unnecessary KDE apps have
       names already;
     - 0209-prevent-qt-mixing.diff - should be dropped;
     - 0216-allow-isystem-for-headers.diff - mac only skip it;
     - 09_qmake_lflags_as-needed.diff - configure script supports LDFLAGS
       nowadays. Drop the patch and export appropriate LDFLAGS in debian/rules
       instead.
   * Do not pass --sourcedir=debian/tmp to dh_install anymore. Not needed for
     compat level 7 or higher.
   * Remove quilt from Build-Depends. It's no longer needed for source format
     3.0 (quilt).
   * Confirm symbol files for official 4.7.1 on amd64.
   * 4.7.1 tarball ships with bogus executable bits on some data files in
     mkspecs, docs, examples and demos subdirs. Remove those -x bits when files
     are installed to debian/tmp.
   * Fix formatting error in the qmake-qt4.1 manpage at line 83.
   * Use dh_auto_* wrappers in place of $(MAKE) within debian/rules in order to
     get automatic handling of parallel building settings for these calls.
   * Backport patch 0001_backport_e3f1268_alsa_buffer_overrun.diff to fix
     potential buffer overrun in ALSA QAudioInput implementation. Thanks to
     Gregor Herrmann for heads up. (Closes: #603052)
   * Patch bin/synqt to generate sane timestamp for symlinks of non existing
     headers. This is needed to avoid timestamp screw up for QtConfig
     header-symlink file.
     Patch 02_syncqt_sane_timestamp_for_nonexisting_headers.diff.
   * Do not run syncqt before ./configure in debian/rules. Simply remove include
     directory forcing ./configure to run syncqt for us.
Checksums-Sha1: 
 4171dbb52a528216b3be03eae757203fa81c3a92 2847 qt4-x11_4.7.1-1.dsc
 fcf764d39d982c7f84703821582bd10c3192e341 211768512 qt4-x11_4.7.1.orig.tar.gz
 94e39a3febbbb98f3a60b60d8f65565b9d9cf926 397211 qt4-x11_4.7.1-1.debian.tar.gz
 5c325db0e8fad299745a92f569d6cfa7d9a28f1d 2772236 libqtcore4_4.7.1-1_amd64.deb
 ae89b8ad03fdfa65697377560f8a662555501ae1 40758 libqt4-core_4.7.1-1_amd64.deb
 6abe9880a4a608aa111009ee8b8ea4d3266a14f1 5248204 libqtgui4_4.7.1-1_amd64.deb
 8518ca1ae39930a0e6e54f17e8c6605c9ba13cb2 40748 libqt4-gui_4.7.1-1_amd64.deb
 bf1876903f60cbf01b690a43897e453d1b355ea2 732786 libqt4-network_4.7.1-1_amd64.deb
 6a8e5cca1428a2ab0ceed8ffb682ef2bbe3a1645 383068 libqt4-opengl_4.7.1-1_amd64.deb
 938317799330bdd7111d5adc01dfa3d6fb5c3003 1071356 libqt4-script_4.7.1-1_amd64.deb
 b70f3c444c3066ef4dc0330bb93143fc97a27232 328772 libqt4-scripttools_4.7.1-1_amd64.deb
 93bddf65c957c3a28cb1d0495a76e6446b2e9c67 153250 libqt4-sql_4.7.1-1_amd64.deb
 2f91357dc041604b75cb8614323a491f216e2a42 87228 libqt4-sql-ibase_4.7.1-1_amd64.deb
 2f00a6a54a2b1fafe1f50741abd12c66b3889f02 69946 libqt4-sql-mysql_4.7.1-1_amd64.deb
 02258e70c25ef7d9d192640138fd5668ae5544b6 90910 libqt4-sql-odbc_4.7.1-1_amd64.deb
 d25d34a01eef08bb4348abc5b85f7f65f07f045d 72732 libqt4-sql-psql_4.7.1-1_amd64.deb
 d4cf434cb8d395bccb258bed4bf206a01c4f090d 60860 libqt4-sql-sqlite_4.7.1-1_amd64.deb
 02d9e08f2727473772b367f6e0b43920f89c5e59 56270 libqt4-sql-sqlite2_4.7.1-1_amd64.deb
 cfbb1da8d85357e52753dc43ffed37f7ccd4c223 64008 libqt4-sql-tds_4.7.1-1_amd64.deb
 ed2c4871e263ab11c992989d4450d29b98d5bbe2 217912 libqt4-svg_4.7.1-1_amd64.deb
 6663c45f9db014fb2871d8911cc44eb9799c95ac 40738 libqt4-webkit_4.7.1-1_amd64.deb
 b7d3215bdb31e2dcdfec72c26aa5f30e9ef1f8a3 152570 libqt4-xml_4.7.1-1_amd64.deb
 2737c37476779445de69f1a2a4516e36744ab273 1587768 libqt4-xmlpatterns_4.7.1-1_amd64.deb
 746c464a52ec18ad7fde564b52a16540de0a20d7 279846 libqt4-dbus_4.7.1-1_amd64.deb
 04784b664c9d5f5a4df243d935b47d743daa7190 1414648 libqt4-qt3support_4.7.1-1_amd64.deb
 79e4a1480858a29ef7bfd90b7a9a664478e78888 4667068 libqt4-designer_4.7.1-1_amd64.deb
 c04f8e91a6e2a5f39fad09230a291aed49450a99 288382 libqt4-help_4.7.1-1_amd64.deb
 1c6e777f9b8bbfaff46502423d18d6323d5c1de8 40726 libqt4-assistant_4.7.1-1_amd64.deb
 9a6c3e640cfb08c9c64eed932e82488f83b4577e 101144 libqt4-test_4.7.1-1_amd64.deb
 30be91c9858ceeaa9234f8f55b65b2688cefab2e 199210 libqt4-phonon_4.7.1-1_amd64.deb
 31b1e263f01653df562b3e8ee9d9a30706e07c14 1314412 libqt4-declarative_4.7.1-1_amd64.deb
 3df270fa99b764678cc3a19f2575ec757dca20ad 55546 libqt4-declarative-folderlistmodel_4.7.1-1_amd64.deb
 c4aedeeb9a7bdb5626d5c4f05ef5d7eaac68714f 59034 libqt4-declarative-gestures_4.7.1-1_amd64.deb
 79d2616da74d4ec6a18d62639ec80076ce7732ba 66754 libqt4-declarative-particles_4.7.1-1_amd64.deb
 9f2b0e5b05f9b550ea22452561e50c6630b0bf9e 5529710 libqt4-dev_4.7.1-1_amd64.deb
 12a86ba05fc7f468569f4acf01698ee742e5d7e0 58704 libqt4-opengl-dev_4.7.1-1_amd64.deb
 d57c390f725dda7563800ed687ab2f5204de3d1d 183561054 libqt4-dbg_4.7.1-1_amd64.deb
 ac838dc941700309746cb5fa32aa3842aa19db28 40716 libqt4-webkit-dbg_4.7.1-1_amd64.deb
 f6342d12e89065970e7eb4263b6c3c5cb2241d03 22568092 libqt4-xmlpatterns-dbg_4.7.1-1_amd64.deb
 9568948ae86b84530c5cb3414131632aef75d44a 76791704 qt4-demos-dbg_4.7.1-1_amd64.deb
 34e17138fbcbcb81c77b9b72e914dd0314a91652 626094 qt4-designer_4.7.1-1_amd64.deb
 42875c07a30d4e6e15ce934b5926fe2d4fab80e3 4686592 qt4-dev-tools_4.7.1-1_amd64.deb
 1728968f9ce0f250b0a288e8533236e978b0c77b 1738332 qt4-qmake_4.7.1-1_amd64.deb
 ec2201ba7f58f72af78ab3777bddc8d99532d41b 168010 qt4-qtconfig_4.7.1-1_amd64.deb
 bb1e5896b2945cf0df02b5247068765657df579c 16396740 qt4-demos_4.7.1-1_amd64.deb
 ed3b1d4b74b3e5dcf2b2cdc426543bc840652367 205714 qt4-qmlviewer_4.7.1-1_amd64.deb
 c3ac026ef2970d0118e9cba907bea45b3ab6c4ae 99315810 qt4-doc_4.7.1-1_all.deb
 95119f2ea725b7a83ba533306fcde6fbf32b9f10 48420278 qt4-doc-html_4.7.1-1_all.deb
Checksums-Sha256: 
 f4cfd380d66d7d585b65cceebd9cd2c3534e7a1f067c72e1ecfa1475d488d3ac 2847 qt4-x11_4.7.1-1.dsc
 8cb5277c41f824cfc6dcee0e95e0bf23a9ad2c8d18d245105137481d092b124a 211768512 qt4-x11_4.7.1.orig.tar.gz
 64acee17988e635b0ac8143f1006ae1e5b3005141795313bf184635fe08358c1 397211 qt4-x11_4.7.1-1.debian.tar.gz
 cd3b66cdbaf91510330491bf0e657eb1c5464774e840180971b475bc77511912 2772236 libqtcore4_4.7.1-1_amd64.deb
 2376a58f2e088d2ab0ec9e9ec4b991182ff95ec4825d129b0983aa74ddf29e41 40758 libqt4-core_4.7.1-1_amd64.deb
 6fc2c0303f4ddf6fc79edc2a94c4f4b00658f71df85bd868d5bc61d65e159801 5248204 libqtgui4_4.7.1-1_amd64.deb
 7ca6809bfda7f1ef82a77eef7a4ea55164e53e2d9c28668dc48cb307fd737f4c 40748 libqt4-gui_4.7.1-1_amd64.deb
 458b66b5af586a6b805e37e668e4d837302d947ab455a0ab829ff958e5f32e92 732786 libqt4-network_4.7.1-1_amd64.deb
 7288a6971c5beed6ca594c23ba5d7310762c6ca09e0fe830bad9df6f56d44bca 383068 libqt4-opengl_4.7.1-1_amd64.deb
 68aa25f401d63334a7440ec86daefd82880073271e313cf6266c65807397c486 1071356 libqt4-script_4.7.1-1_amd64.deb
 e26d2be05367d08a890a3762d0fcff6c49ca8d8897a2e8b9bc865e1afb3f4055 328772 libqt4-scripttools_4.7.1-1_amd64.deb
 526108084354207e859b8f4fe5a1c7e368796b8595215f65d461514e1af1962d 153250 libqt4-sql_4.7.1-1_amd64.deb
 231f99b4773eac5d1cba355dc324cdce8878dd1badd471b26a4040f5183aaf0e 87228 libqt4-sql-ibase_4.7.1-1_amd64.deb
 631feb251e80efa4e9a8cb69085138e0c6d1debe70bee385173703b7b59c6813 69946 libqt4-sql-mysql_4.7.1-1_amd64.deb
 861d59293ffffc67d5b499f54c41f5ef72024f394bc791b322eb381c1a705179 90910 libqt4-sql-odbc_4.7.1-1_amd64.deb
 ae13b8f09eb64ca41c031820bcf08ab6769c826c9db6a0b7362118271065c411 72732 libqt4-sql-psql_4.7.1-1_amd64.deb
 40fe0bd1b65da053253f173a01ffd51f73301d6535e8636ebbfd8e9e83bb9109 60860 libqt4-sql-sqlite_4.7.1-1_amd64.deb
 63713385b47a8c194e2c96cc7e5d02df1e69a5d9aaae6b89a29434f92dcff270 56270 libqt4-sql-sqlite2_4.7.1-1_amd64.deb
 0b92f0ff7d13aa421cb5e20f49d9970fe0df6ce9fa48e09cc00324a23b073139 64008 libqt4-sql-tds_4.7.1-1_amd64.deb
 3cb6f6339f4e7ca0ba3eb85f8cb2b37301732029c3434c8f9e8b94f83df78f67 217912 libqt4-svg_4.7.1-1_amd64.deb
 2710a0975bf26d8b3492fe88059e55977e0d7240fb3152bdb045cc2d5cc99b57 40738 libqt4-webkit_4.7.1-1_amd64.deb
 5c230d8c6f40d6aff411581f6e698d136c83e6ae146d0504bde6d15adae12939 152570 libqt4-xml_4.7.1-1_amd64.deb
 fb4549fcfc6ac5a9518b3359d3e695830f05be2fa4855ae05dda343599eee10b 1587768 libqt4-xmlpatterns_4.7.1-1_amd64.deb
 5670a0f89119aa450fdcfa5ce45e7fcbe79e8edee0eba4ecef889a04039a1738 279846 libqt4-dbus_4.7.1-1_amd64.deb
 fba0c946408a1d67c4162d95b16be68349897b87eaab2a27bcaba5bcfdd7001c 1414648 libqt4-qt3support_4.7.1-1_amd64.deb
 f38b1300d84645e18ff9b4d8ad031024b36514af012e2687c5d1bf0f2d24b58b 4667068 libqt4-designer_4.7.1-1_amd64.deb
 5332a76240492564c7ec0888e9a761055b90fe48ab5a8170ae47b4728aff8cf2 288382 libqt4-help_4.7.1-1_amd64.deb
 d743c186b79ce4d490b760b807fce7232650501bcb77238546c59e3beb69aba8 40726 libqt4-assistant_4.7.1-1_amd64.deb
 c34df01881afa1505d029924dda6bbbaa01e22121fdc6f9080d3113475f14b8d 101144 libqt4-test_4.7.1-1_amd64.deb
 ca170879d2cf78d134c22f511d2bea09727b2c947cf7b33ed05081a0530a9ed2 199210 libqt4-phonon_4.7.1-1_amd64.deb
 f8abc35ff46aa8fafecf46e041ae79a6ad295c83eca427b0cf6ff7f99ea1d286 1314412 libqt4-declarative_4.7.1-1_amd64.deb
 9565468cc9a58aa1261fddab26453a7c0673810980d7f37451d7487ba5f4d974 55546 libqt4-declarative-folderlistmodel_4.7.1-1_amd64.deb
 3b714c7550ae4a37990ffe62c6b42a8c734cce402afd0acaeb7fd3375c31edbe 59034 libqt4-declarative-gestures_4.7.1-1_amd64.deb
 f2ec58b929be5065776d239acb5a47d6dfeb835b2a7bd595fb290c539e34ff45 66754 libqt4-declarative-particles_4.7.1-1_amd64.deb
 923e3d81ad7fc6f604fbf71c16d79b027bf4040f19e3fada12bdba518408b902 5529710 libqt4-dev_4.7.1-1_amd64.deb
 7aa9779a0010c3cabb84188c9c7852a3b03b8d3e10d709a4eec2abe08c956d91 58704 libqt4-opengl-dev_4.7.1-1_amd64.deb
 ac5e485df13325ee42bd8812c0a29027cc9f053d01ee80f56618c19f56a58592 183561054 libqt4-dbg_4.7.1-1_amd64.deb
 2836bf5a22f1f207d5ee1b7381ca4a5b2e306b151bf99813d132354cc1f5cee2 40716 libqt4-webkit-dbg_4.7.1-1_amd64.deb
 ddce8769cce4854a39f38e2970722933c0a7f45bbd90c5c8990c27db25fa339a 22568092 libqt4-xmlpatterns-dbg_4.7.1-1_amd64.deb
 baf9d8623a1720913b81eb58cd3762228fc8a9a024dcf2d4a979867e27a71fb2 76791704 qt4-demos-dbg_4.7.1-1_amd64.deb
 7fb8d025112e135b463b0914ab667c7ebb07d8ddd0d5e588f122da7cf93d1e76 626094 qt4-designer_4.7.1-1_amd64.deb
 0eb3c4a071db373b1f463145692985835b0b8d9d6544cb86c5488c7fa95366e8 4686592 qt4-dev-tools_4.7.1-1_amd64.deb
 ac935a0d9457986603f2d3027b4574c0a9bef3ac7f275c247db2eaaae28c6925 1738332 qt4-qmake_4.7.1-1_amd64.deb
 8f8818d36241d8827568ac2e52cfd92c24c8ee03003329ea9a1b2fa71ca13914 168010 qt4-qtconfig_4.7.1-1_amd64.deb
 9e8dd16eb0601c6b24c1960ecdf4b9f5856e7bae52bf334b3bb1202de52ae35d 16396740 qt4-demos_4.7.1-1_amd64.deb
 eddb9064eb2415a0f91baab1ccb9b34126144c15c408e02b8bb0f9cd3444ca85 205714 qt4-qmlviewer_4.7.1-1_amd64.deb
 5cd862b7bb060bcb3351ab723b19a255074b16956fa532760a952378696b9207 99315810 qt4-doc_4.7.1-1_all.deb
 43c253135294e1287b97e348c5bb1778d2c4c5c3bf063734a1a7de5ec2a9a32c 48420278 qt4-doc-html_4.7.1-1_all.deb
Files: 
 5e6cba5bd2e98a9911ffb2c04a4db38e 2847 libs optional qt4-x11_4.7.1-1.dsc
 6f88d96507c84e9fea5bf3a71ebeb6d7 211768512 libs optional qt4-x11_4.7.1.orig.tar.gz
 9a88d2f982e93e197129bd064b7ec62d 397211 libs optional qt4-x11_4.7.1-1.debian.tar.gz
 c0f1755b9d6a622d222a0acf960fede2 2772236 libs optional libqtcore4_4.7.1-1_amd64.deb
 e508ddc5797757ec4cde7f84dd2942a9 40758 libs optional libqt4-core_4.7.1-1_amd64.deb
 4411cb27d7d3627682c9526c450f501e 5248204 libs optional libqtgui4_4.7.1-1_amd64.deb
 181841ae29b6e39436adec5c45554968 40748 libs optional libqt4-gui_4.7.1-1_amd64.deb
 009652f6a382108c88536a05e6065f2a 732786 libs optional libqt4-network_4.7.1-1_amd64.deb
 8e7ef73abda56ba554f2cd3cc6a2d190 383068 libs optional libqt4-opengl_4.7.1-1_amd64.deb
 4e77bcbb3fcde749e5cf5e5376f7d384 1071356 libs optional libqt4-script_4.7.1-1_amd64.deb
 da3b3b0864380fae2b058ef1c0cccae1 328772 libs optional libqt4-scripttools_4.7.1-1_amd64.deb
 37db40ef47ab35972420b80e6f607ec8 153250 libs optional libqt4-sql_4.7.1-1_amd64.deb
 95a734c5bdd83f24b0f0969a6c2eeefc 87228 libs optional libqt4-sql-ibase_4.7.1-1_amd64.deb
 0e0ed85d264736d55eb4a2e064a8dbf0 69946 libs optional libqt4-sql-mysql_4.7.1-1_amd64.deb
 5cbcfe8390ea27b30b79ae5ddcb16ae0 90910 libs optional libqt4-sql-odbc_4.7.1-1_amd64.deb
 81b8b3c12094a29cfb5791f43a344792 72732 libs optional libqt4-sql-psql_4.7.1-1_amd64.deb
 c5ac60152b0586ce9064338e28d9e81e 60860 libs optional libqt4-sql-sqlite_4.7.1-1_amd64.deb
 78a7bb40849d9ca3cd963043b093f80e 56270 libs optional libqt4-sql-sqlite2_4.7.1-1_amd64.deb
 1a6790f57ecb05d9909b52cb5d93f2a9 64008 libs optional libqt4-sql-tds_4.7.1-1_amd64.deb
 28a77e845f9d60fe982313cd0d103dfd 217912 libs optional libqt4-svg_4.7.1-1_amd64.deb
 b9771bd3c501763f4eb3cddad8eb35c2 40738 libs optional libqt4-webkit_4.7.1-1_amd64.deb
 e660484b68293fc953c575851ba8169a 152570 libs optional libqt4-xml_4.7.1-1_amd64.deb
 56a24f08a4777e4eaa8d00ff500f1468 1587768 libs optional libqt4-xmlpatterns_4.7.1-1_amd64.deb
 cc56da498bfe4e57102b1c183cb4eb1e 279846 libs optional libqt4-dbus_4.7.1-1_amd64.deb
 7bdc4206d36393b786184d474d6e77d7 1414648 libs optional libqt4-qt3support_4.7.1-1_amd64.deb
 d707b670ac50d4411646625d4475a629 4667068 libs optional libqt4-designer_4.7.1-1_amd64.deb
 3363af5e6406b2d813e759438c5a260b 288382 libs optional libqt4-help_4.7.1-1_amd64.deb
 b7becf1844a70b2bdaa6bb9747a3e431 40726 libs optional libqt4-assistant_4.7.1-1_amd64.deb
 09e9b0decb170358ef53cd7681e9f8fa 101144 libs optional libqt4-test_4.7.1-1_amd64.deb
 190d1404745c378ba848c2235aa6a1af 199210 libs optional libqt4-phonon_4.7.1-1_amd64.deb
 a0d29ad4bad2ab1b1ec7aff0cd48af0b 1314412 libs optional libqt4-declarative_4.7.1-1_amd64.deb
 ebcdca571c421a83f55e8a1119e4e95e 55546 libs optional libqt4-declarative-folderlistmodel_4.7.1-1_amd64.deb
 5900efcb43a25cf3468e7af214fb9e3c 59034 libs optional libqt4-declarative-gestures_4.7.1-1_amd64.deb
 d8792583f409a403b7eb49b8358164b9 66754 libs optional libqt4-declarative-particles_4.7.1-1_amd64.deb
 85502d36ea0ffcd00ad253fed7d0bb09 5529710 libdevel optional libqt4-dev_4.7.1-1_amd64.deb
 9fadd9b01c1894e1ce95ca2dfd2ebe1c 58704 libdevel optional libqt4-opengl-dev_4.7.1-1_amd64.deb
 527925dc4d5a3759a84a3a586487857e 183561054 debug extra libqt4-dbg_4.7.1-1_amd64.deb
 b0a4665d1091edbe0ed65641eadd6d6b 40716 debug extra libqt4-webkit-dbg_4.7.1-1_amd64.deb
 d6ab81b1e809efe393a418230a9068c7 22568092 debug extra libqt4-xmlpatterns-dbg_4.7.1-1_amd64.deb
 cedfcae108a6428a59c95bf6ebc040e0 76791704 debug extra qt4-demos-dbg_4.7.1-1_amd64.deb
 ce2c886ee15fac4633a1539c2b84b738 626094 devel optional qt4-designer_4.7.1-1_amd64.deb
 23c1527ac5d824aa919558504ad7143b 4686592 devel optional qt4-dev-tools_4.7.1-1_amd64.deb
 30746d6a75ae97e7e90f38482e14ce5d 1738332 devel optional qt4-qmake_4.7.1-1_amd64.deb
 cc9b8340668d95b25296fbe4ecc5499d 168010 x11 optional qt4-qtconfig_4.7.1-1_amd64.deb
 2c4377a1ef1962bfd27ebb9eead10719 16396740 x11 optional qt4-demos_4.7.1-1_amd64.deb
 c244bbabc9bbc89960e0e67e1a64f081 205714 devel optional qt4-qmlviewer_4.7.1-1_amd64.deb
 3fc11d37318c3860ab5684a64d9dfaaa 99315810 doc optional qt4-doc_4.7.1-1_all.deb
 2ec0a810789e832ec1df8441830bb5af 48420278 doc optional qt4-doc-html_4.7.1-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkz73NAACgkQHO9JRnPq4hQ/mwCfRep36jAiKBz92VzCBAKyTgZD
z6EAnjmRUEmZXRnGsUEMHYzzXLcrlrRj
=wtU2
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: