extensions/source/update/check/updatecheck.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 97ceff5bb949063f118835d67334aedf6d57420c
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Mon Feb 20 11:03:41 2023 +0000
Commit:     Caolán McNamara <caol...@redhat.com>
CommitDate: Mon Feb 20 12:51:34 2023 +0000

    cid#1521188 Uninitialized scalar variable
    
    Change-Id: I926bfa8167bbc94643587400825364f46db43063
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147319
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caol...@redhat.com>

diff --git a/extensions/source/update/check/updatecheck.cxx 
b/extensions/source/update/check/updatecheck.cxx
index dd4aa29ce312..46a4d8dbeb61 100644
--- a/extensions/source/update/check/updatecheck.cxx
+++ b/extensions/source/update/check/updatecheck.cxx
@@ -650,8 +650,7 @@ DownloadThread::run()
         if( ! m_aDownload.start(m_aURL, aLocalFile, aDownloadDest ) )
         {
             // retry every 15s unless the dialog is not visible
-            TimeValue tv;
-            tv.Seconds = 15;
+            TimeValue tv(15, 0);
 
             if( ! UpdateCheck::get()->isDialogShowing() )
             {

Reply via email to