From f4735b71807dee7b89fca3ac6f679663ebc22d76 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 7 Jan 2009 22:40:13 +0100 Subject: [PATCH] Set proper python exception when running out of memory. --- source4/librpc/rpc/pyrpc.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/source4/librpc/rpc/pyrpc.c b/source4/librpc/rpc/pyrpc.c index 9863a6aeb5..b841fdad65 100644 --- a/source4/librpc/rpc/pyrpc.c +++ b/source4/librpc/rpc/pyrpc.c @@ -38,12 +38,16 @@ static PyObject *py_dcerpc_run_function(dcerpc_InterfaceObject *iface, struct Py } mem_ctx = talloc_new(NULL); - if (mem_ctx == NULL) + if (mem_ctx == NULL) { + PyErr_NoMemory(); return NULL; + } r = talloc_zero_size(mem_ctx, md->table->calls[md->opnum].struct_size); - if (r == NULL) + if (r == NULL) { + PyErr_NoMemory(); return NULL; + } if (!md->pack_in_data(args, kwargs, r)) { talloc_free(mem_ctx); -- 2.34.1