diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-11-11 17:10:24 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-11-11 17:10:24 +0100 |
commit | 2f438b4cdeaacf55b0832bf71b2ef15b30cdd758 (patch) | |
tree | f16cf64eed173a98211de135f8dfd542bfd507d8 /pidl | |
parent | 676f3c1c5cc8c2790462ec618f821c31e34165c7 (diff) | |
download | samba-2f438b4cdeaacf55b0832bf71b2ef15b30cdd758.tar.gz |
Remove unused variable, fix return.
Diffstat (limited to 'pidl')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/Python.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/Python.pm b/pidl/lib/Parse/Pidl/Samba4/Python.pm index 38aee2c9d16..a3107d4672f 100644 --- a/pidl/lib/Parse/Pidl/Samba4/Python.pm +++ b/pidl/lib/Parse/Pidl/Samba4/Python.pm @@ -702,7 +702,7 @@ sub Interface($$$) $self->pidl("if (!NT_STATUS_IS_OK(status)) {"); $self->indent; $self->pidl("PyErr_SetNTSTATUS(status);"); - $self->pidl("return;"); + $self->pidl("return NULL;"); $self->deindent; $self->pidl("}"); @@ -1181,7 +1181,6 @@ sub Parse($$$$$) $self->pidl("{"); $self->indent; $self->pidl("PyObject *m;"); - $self->pidl("NTSTATUS status;"); $self->pidl(""); foreach (@{$self->{ready_types}}) { |