summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-09-07 18:16:10 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-09-07 18:16:10 (GMT)
commitb7a6baa6ec7b45637ad56418e8e3ab736409835f (patch)
tree1c09f961e88f43efa3bcbe762247648d16d09610 /plugins
parent9aaaa651d924eb30e46f26690aea007b7d868e35 (diff)
Updated prototypes for creating memory content.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/pychrysalide/analysis/contents/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pychrysalide/analysis/contents/memory.c b/plugins/pychrysalide/analysis/contents/memory.c
index 812c580..89a2aa8 100644
--- a/plugins/pychrysalide/analysis/contents/memory.c
+++ b/plugins/pychrysalide/analysis/contents/memory.c
@@ -70,7 +70,7 @@ static PyObject *py_memory_content_new(PyTypeObject *type, PyObject *args, PyObj
ret = PyBytes_AsStringAndSize(data, &buffer, &length);
if (ret == -1) Py_RETURN_NONE;
- content = g_memory_content_new((bin_t *)buffer, length);
+ content = g_memory_content_new((const bin_t *)buffer, length);
result = pygobject_new(G_OBJECT(content));