Package: python-axolotl-curve25519 / 0.4.1.post2-3

00-fix-pymodule-def-init.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: PymoduleDef has changed it's API and it doesn't support a pointer for the m_size parameter anymore.
 This patch updates it to initialize it with a long value 0.
Author: Josue Ortega <josue@debian.org>
Forwarded: not-needed
Last-Update: 2024-07-28


--- a/curve25519module.c
+++ b/curve25519module.c
@@ -158,7 +158,7 @@
         PyModuleDef_HEAD_INIT,
         "axolotl_curve25519",
         NULL,
-        NULL,
+        0,
         curve25519_functions,
     };