chiark / gitweb /
util: use alloca0() intead of alloca() + memzero()
[elogind.git] / src / python-systemd / _journal.c
index 669c22ce5e6bd71029a19ed376bcf3c14272f8fd..8cc6d3e52a68dd095122c07f3850e002fd59f9f0 100644 (file)
@@ -41,8 +41,7 @@ static PyObject *journal_sendv(PyObject *self, PyObject *args) {
 
         /* Allocate an array for the argument strings */
         argc = PyTuple_Size(args);
-        encoded = alloca(argc * sizeof(PyObject*));
-        memzero(encoded, argc * sizeof(PyObject*));
+        encoded = alloca0(argc * sizeof(PyObject*));
 
         /* Allocate sufficient iovector space for the arguments. */
         iov = alloca(argc * sizeof(struct iovec));