diff options
Diffstat (limited to 'plugins/encodings')
-rw-r--r-- | plugins/encodings/python/rost/base64.h | 2 | ||||
-rw-r--r-- | plugins/encodings/python/rost/module.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/plugins/encodings/python/rost/base64.h b/plugins/encodings/python/rost/base64.h index c4459e9..0ef0834 100644 --- a/plugins/encodings/python/rost/base64.h +++ b/plugins/encodings/python/rost/base64.h @@ -34,7 +34,7 @@ /* Fournit un accès à une définition de type à diffuser. */ PyTypeObject *get_python_scan_base64_modifier_type(void); -/* Prend en charge l'objet 'pychrysalide....Base64Modifier'. */ +/* Prend en charge l'objet 'pychrysalide.analysis.scan.patterns.modifiers.Base64Modifier'. */ bool ensure_python_scan_base64_modifier_is_registered(void); /* Tente de convertir en transformation par encodage en Base64. */ diff --git a/plugins/encodings/python/rost/module.c b/plugins/encodings/python/rost/module.c index 6bd7187..4812bb5 100644 --- a/plugins/encodings/python/rost/module.c +++ b/plugins/encodings/python/rost/module.c @@ -25,6 +25,7 @@ #include "module.h" +#include <assert.h> #include <Python.h> |