[Libreoffice-commits] core.git: desktop/source

Dennis Francis (via logerrit) logerrit at kemper.freedesktop.org
Mon Jun 17 06:44:56 UTC 2019


 desktop/source/app/app.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d39846bfd16ad9873795149c370a95f42363bfd9
Author:     Dennis Francis <dennis.francis at collabora.com>
AuthorDate: Fri Jun 14 10:28:47 2019 +0530
Commit:     Miklos Vajna <vmiklos at collabora.com>
CommitDate: Mon Jun 17 08:44:11 2019 +0200

    tdf#125691: use _exit() instead of exit()...
    
    for ExitTimer which is used exclusively for
    the case when  OOO_EXIT_POST_STARTUP is set, so
    that there is no waiting around for ThreadPool's
    threads to get joined.
    
    Setting OOO_EXIT_POST_STARTUP already evades any
    proper destruction of objects in the heap, so
    using _exit() instead of exit() here does not
    make things any worse w.r.t the purpose of this
    env var.
    
    Change-Id: Ib4a253d6e1a3fd8593e4a2115a51cf4c10344b3c
    Reviewed-on: https://gerrit.libreoffice.org/74016
    Tested-by: Jenkins
    Reviewed-by: Miklos Vajna <vmiklos at collabora.com>

diff --git a/desktop/source/app/app.cxx b/desktop/source/app/app.cxx
index bda1df98f6da..0867f6b5e82d 100644
--- a/desktop/source/app/app.cxx
+++ b/desktop/source/app/app.cxx
@@ -1911,7 +1911,7 @@ class ExitTimer : public Timer
     }
     virtual void Invoke() override
     {
-        exit(42);
+        _exit(42);
     }
 };
 


More information about the Libreoffice-commits mailing list