summaryrefslogtreecommitdiff
path: root/desktop/source
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-03 12:38:14 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-06 08:09:42 +0000
commit6f640a0a572bd016f796c30b486b6175f66bc5c9 (patch)
tree046c4753ada54e698af64f27292b33ac5033c804 /desktop/source
parenta7df5753d91c17fb102cf9783e34cf0f60178a51 (diff)
don't just silently ignore the return value
Change-Id: Ia65c29b61e78de4b908b11cd803d93da4b7e3a2d Reviewed-on: https://gerrit.libreoffice.org/25864 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> (cherry picked from commit d2796282721dd2ed4d2c67e4e8982fb32263b55d) Reviewed-on: https://gerrit.libreoffice.org/25932
Diffstat (limited to 'desktop/source')
-rw-r--r--desktop/source/minidump/minidump.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/desktop/source/minidump/minidump.cxx b/desktop/source/minidump/minidump.cxx
index 64303d4befdc..c0d68c298fda 100644
--- a/desktop/source/minidump/minidump.cxx
+++ b/desktop/source/minidump/minidump.cxx
@@ -200,9 +200,7 @@ bool readConfig(const std::string& iniPath)
return false;
}
- uploadContent(parameters);
-
- return true;
+ return uploadContent(parameters);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */