diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-06-29 16:19:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-06-29 16:19:50 +0200 |
commit | f27839c1a9e7390bb850d768e1146014b221cc43 (patch) | |
tree | 00e23ab2884093eb62f81f3f17fd36d7fc646c76 /src/if_py_both.h | |
parent | 11b73d668f6209acbe06988a804028c5c86799d2 (diff) | |
download | vim-git-f27839c1a9e7390bb850d768e1146014b221cc43.tar.gz |
updated for version 7.3.578v7.3.578
Problem: Misplaced declaration.
Solution: Move declaration to start of block.
Diffstat (limited to 'src/if_py_both.h')
-rw-r--r-- | src/if_py_both.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/if_py_both.h b/src/if_py_both.h index f627f67af..d828358e7 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h @@ -818,21 +818,21 @@ DictionaryAssItem(PyObject *self, PyObject *keyObject, PyObject *valObject) if (valObject == NULL) { + hashitem_T *hi; + if (di == NULL) { PyErr_SetString(PyExc_IndexError, _("no such key in dictionary")); return -1; } - hashitem_T *hi = hash_find(&d->dv_hashtab, di->di_key); + hi = hash_find(&d->dv_hashtab, di->di_key); hash_remove(&d->dv_hashtab, hi); dictitem_free(di); return 0; } if (ConvertFromPyObject(valObject, &tv) == -1) - { return -1; - } if (di == NULL) { |