Skip to content
Snippets Groups Projects
Commit 75d20971 authored by Wayne Lewis's avatar Wayne Lewis
Browse files

Use different variable names each time memory is allocated

parent c26f72f5
No related branches found
No related tags found
No related merge requests found
......@@ -518,7 +518,8 @@ void registerModule(const char *module, const char *version, const char *locatio
size_t lm = strlen(module) + 1;
size_t lv = (version ? strlen(version) : 0) + 1;
size_t ll = 1;
char *abslocation = NULL;
char *absLocation = NULL;
char *absLocationRequire = NULL;
char *argstring = NULL;
const char *mylocation;
static int firstTime = 1;
......@@ -539,8 +540,8 @@ void registerModule(const char *module, const char *version, const char *locatio
if (location)
{
abslocation = realpathSeparator(location);
ll = strlen(abslocation) + 1;
absLocation = realpathSeparator(location);
ll = strlen(absLocation) + 1;
}
m = (moduleitem *)malloc(sizeof(moduleitem) + lm + lv + ll);
if (m == NULL)
......@@ -553,9 +554,9 @@ void registerModule(const char *module, const char *version, const char *locatio
strcpy(m->content, module);
strcpy(m->content + lm, version);
strcpy(m->content + lm + lv, abslocation ? abslocation : "");
strcpy(m->content + lm + lv, absLocation ? absLocation : "");
free(abslocation);
free(absLocation);
for (pm = &loadedModules; *pm != NULL; pm = &(*pm)->next)
;
*pm = m;
......@@ -580,7 +581,7 @@ void registerModule(const char *module, const char *version, const char *locatio
mylocation = getenv("require_DIR");
if (mylocation == NULL)
return;
if (asprintf(&abslocation, "%s" OSI_PATH_SEPARATOR "db" OSI_PATH_SEPARATOR "moduleversion.template", mylocation) < 0)
if (asprintf(&absLocationRequire, "%s" OSI_PATH_SEPARATOR "db" OSI_PATH_SEPARATOR "moduleversion.template", mylocation) < 0)
return;
/*
Require DB has the following four PVs:
......@@ -597,9 +598,9 @@ void registerModule(const char *module, const char *version, const char *locatio
moduleListBufferSize + maxModuleNameLength * moduleCount) < 0)
return;
printf("Loading module info records for %s\n", module);
dbLoadRecords(abslocation, argstring);
dbLoadRecords(absLocationRequire, argstring);
free(argstring);
free(abslocation);
free(absLocationRequire);
}
#if defined(__linux)
......
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