From: Rafael Roquetto Date: Wed, 10 Oct 2012 18:43:50 +0000 (-0300) Subject: Fix number of available printers in CUPS support. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eda0e120e9e2e7b7be747f4ed035d686c9547769;p=profile%2Fivi%2Fqtbase.git Fix number of available printers in CUPS support. If the number of available printers changes, we want to update the count. Additionally, if that number has gone to zero, we want to ensure that the number of available printers in the static object is reset to zero. This fixes a crash that occurs if: * You print * You kill cupsd (or it crashes because you're porting it and your port is unstable) * You try to print again before restarting it. Change-Id: I6c6069db9d800ce7426e75df760829fea278e56e Reviewed-by: Sean Harmer Reviewed-by: Lars Knoll --- diff --git a/src/printsupport/kernel/qcups.cpp b/src/printsupport/kernel/qcups.cpp index dd38552..ea18f1e 100644 --- a/src/printsupport/kernel/qcups.cpp +++ b/src/printsupport/kernel/qcups.cpp @@ -135,7 +135,7 @@ QCUPSSupport::QCUPSSupport() if (!isAvailable()) return; - prnCount = _cupsGetDests(&printers); + qt_cups_num_printers = prnCount = _cupsGetDests(&printers); for (int i = 0; i < prnCount; ++i) { if (printers[i].is_default) {