aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1parser/asn1parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'libasn1parser/asn1parser.c')
-rw-r--r--libasn1parser/asn1parser.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libasn1parser/asn1parser.c b/libasn1parser/asn1parser.c
index 05330d6d..6a3477d1 100644
--- a/libasn1parser/asn1parser.c
+++ b/libasn1parser/asn1parser.c
@@ -1,5 +1,5 @@
#include <stdio.h>
-#include <stdlib.h>
+#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <assert.h>
@@ -181,12 +181,10 @@ _asn1p_fix_modules(asn1p_t *a, const char *fname) {
asn1p_module_t *mod;
TQ_FOR(mod, &(a->modules), mod_next) {
asn1p_expr_t *expr;
- int flen = strlen(fname) + 1;
- mod->source_file_name = malloc(flen);
+ mod->source_file_name = strdup(fname);
if(mod->source_file_name == NULL)
return -1;
- memcpy(mod->source_file_name, fname, flen);
TQ_FOR(expr, &(mod->members), next) {
_asn1p_apply_module2expr(expr, mod);