Skip to content
Snippets Groups Projects
Commit 2eb6c19a authored by Lev Walkin's avatar Lev Walkin
Browse files

no strdup

parent f8218ad8
No related branches found
No related tags found
No related merge requests found
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <assert.h> #include <assert.h>
...@@ -181,10 +181,12 @@ _asn1p_fix_modules(asn1p_t *a, const char *fname) { ...@@ -181,10 +181,12 @@ _asn1p_fix_modules(asn1p_t *a, const char *fname) {
asn1p_module_t *mod; asn1p_module_t *mod;
TQ_FOR(mod, &(a->modules), mod_next) { TQ_FOR(mod, &(a->modules), mod_next) {
asn1p_expr_t *expr; asn1p_expr_t *expr;
int flen = strlen(fname) + 1;
mod->source_file_name = strdup(fname); mod->source_file_name = malloc(flen);
if(mod->source_file_name == NULL) if(mod->source_file_name == NULL)
return -1; return -1;
memcpy(mod->source_file_name, fname, flen);
TQ_FOR(expr, &(mod->members), next) { TQ_FOR(expr, &(mod->members), next) {
_asn1p_apply_module2expr(expr, mod); _asn1p_apply_module2expr(expr, mod);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment