[Libreoffice-commits] core.git: pyuno/source
Noel (via logerrit)
logerrit at kemper.freedesktop.org
Thu Nov 5 11:57:37 UTC 2020
pyuno/source/module/pyuno.cxx | 4 +---
pyuno/source/module/pyuno_iterator.cxx | 2 +-
2 files changed, 2 insertions(+), 4 deletions(-)
New commits:
commit 00aafa2e0140742983ec6e6e916636d23794dfe3
Author: Noel <noelgrandin at gmail.com>
AuthorDate: Thu Nov 5 11:24:50 2020 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Thu Nov 5 12:57:00 2020 +0100
loplugin:reducevarscope in pyuno
Change-Id: I49157f373b0d5919492a0ba4ccdcd545c58730a2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105333
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/pyuno/source/module/pyuno.cxx b/pyuno/source/module/pyuno.cxx
index 25aea6436032..25ae588d6d58 100644
--- a/pyuno/source/module/pyuno.cxx
+++ b/pyuno/source/module/pyuno.cxx
@@ -1363,14 +1363,12 @@ static int PyUNO_contains( PyObject *self, PyObject *pKey )
static PyObject* PyUNO_getattr (PyObject* self, char* name)
{
- PyUNO* me;
-
try
{
Runtime runtime;
- me = reinterpret_cast<PyUNO*>(self);
+ PyUNO* me = reinterpret_cast<PyUNO*>(self);
if (strcmp (name, "__dict__") == 0)
{
Py_INCREF (Py_TYPE(me)->tp_dict);
diff --git a/pyuno/source/module/pyuno_iterator.cxx b/pyuno/source/module/pyuno_iterator.cxx
index 840fc977014a..b5dcf78695a8 100644
--- a/pyuno/source/module/pyuno_iterator.cxx
+++ b/pyuno/source/module/pyuno_iterator.cxx
@@ -211,10 +211,10 @@ static PyObject* PyUNO_list_iterator_next( PyObject *self )
Runtime runtime;
Any aRet;
- bool noMoreElements = false;
try
{
+ bool noMoreElements = false;
{
PyThreadDetach antiguard;
try {
More information about the Libreoffice-commits
mailing list