Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
e3-require
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anders Lindh Olsson
e3-require
Commits
9d34dce1
Commit
9d34dce1
authored
1 year ago
by
Simon Rose
Browse files
Options
Downloads
Patches
Plain Diff
Add a few more free()s
parent
05192271
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
require-ess/src/require.c
+22
-9
22 additions, 9 deletions
require-ess/src/require.c
with
22 additions
and
9 deletions
require-ess/src/require.c
+
22
−
9
View file @
9d34dce1
...
@@ -1086,7 +1086,10 @@ static int require_priv(const char *module, const char *version) {
...
@@ -1086,7 +1086,10 @@ static int require_priv(const char *module, const char *version) {
/* filename =
/* filename =
* "<dirname>/[dirlen]<module>/<version>/[releasediroffs]/lib/<targetArch>/[libdiroffs]/module.dep"
* "<dirname>/[dirlen]<module>/<version>/[releasediroffs]/lib/<targetArch>/[libdiroffs]/module.dep"
*/
*/
if
(
handleDependencies
(
module
,
filename
)
==
-
1
)
return
-
1
;
if
(
handleDependencies
(
module
,
filename
)
==
-
1
)
{
returnvalue
=
-
1
;
goto
require_priv_end
;
}
}
}
if
(
requireDebug
)
printf
(
"require: looking for library file
\n
"
);
if
(
requireDebug
)
printf
(
"require: looking for library file
\n
"
);
...
@@ -1101,11 +1104,17 @@ static int require_priv(const char *module, const char *version) {
...
@@ -1101,11 +1104,17 @@ static int require_priv(const char *module, const char *version) {
* "<dirname>/[dirlen]<module>/<version>/[releasediroffs]/lib/<targetArch>/[libdiroffs]/PREFIX<module>INFIX[extoffs]EXT"
* "<dirname>/[dirlen]<module>/<version>/[releasediroffs]/lib/<targetArch>/[libdiroffs]/PREFIX<module>INFIX[extoffs]EXT"
*/
*/
printf
(
"Loading library %s
\n
"
,
filename
);
printf
(
"Loading library %s
\n
"
,
filename
);
if
((
libhandle
=
loadlib
(
filename
))
==
NULL
)
return
-
1
;
if
((
libhandle
=
loadlib
(
filename
))
==
NULL
)
{
returnvalue
=
-
1
;
goto
require_priv_end
;
}
/* now check what version we really got (with compiled-in version number)
/* now check what version we really got (with compiled-in version number)
*/
*/
if
(
asprintf
(
&
symbolname
,
"_%sLibRelease"
,
module
)
<
0
)
return
errno
;
if
(
asprintf
(
&
symbolname
,
"_%sLibRelease"
,
module
)
<
0
)
{
returnvalue
=
errno
;
goto
require_priv_end
;
}
found
=
(
const
char
*
)
getAddress
(
libhandle
,
symbolname
);
found
=
(
const
char
*
)
getAddress
(
libhandle
,
symbolname
);
free
(
symbolname
);
free
(
symbolname
);
...
@@ -1120,7 +1129,7 @@ static int require_priv(const char *module, const char *version) {
...
@@ -1120,7 +1129,7 @@ static int require_priv(const char *module, const char *version) {
"Requested %s version %s not available, found only %s.
\n
"
,
"Requested %s version %s not available, found only %s.
\n
"
,
module
,
version
,
found
);
module
,
version
,
found
);
returnvalue
=
-
1
;
returnvalue
=
-
1
;
goto
require_priv_e
rror
;
goto
require_priv_e
nd
;
}
}
/* load dbd file */
/* load dbd file */
...
@@ -1130,16 +1139,20 @@ static int require_priv(const char *module, const char *version) {
...
@@ -1130,16 +1139,20 @@ static int require_priv(const char *module, const char *version) {
if
(
dbLoadDatabase
(
filename
,
NULL
,
NULL
)
!=
0
)
{
if
(
dbLoadDatabase
(
filename
,
NULL
,
NULL
)
!=
0
)
{
fprintf
(
stderr
,
"Error loading %s
\n
"
,
filename
);
fprintf
(
stderr
,
"Error loading %s
\n
"
,
filename
);
returnvalue
=
-
1
;
returnvalue
=
-
1
;
goto
require_priv_e
rror
;
goto
require_priv_e
nd
;
}
}
/* when dbd is loaded call register function */
/* when dbd is loaded call register function */
if
(
asprintf
(
&
symbolname
,
"%s_registerRecordDeviceDriver"
,
module
)
<
0
)
if
(
asprintf
(
&
symbolname
,
"%s_registerRecordDeviceDriver"
,
module
)
<
return
errno
;
0
)
{
returnvalue
=
errno
;
goto
require_priv_end
;
}
printf
(
"Calling function %s
\n
"
,
symbolname
);
printf
(
"Calling function %s
\n
"
,
symbolname
);
iocshCmd
(
symbolname
);
returnvalue
=
iocshCmd
(
symbolname
);
free
(
symbolname
);
free
(
symbolname
);
if
(
returnvalue
)
goto
require_priv_end
;
}
else
{
}
else
{
/* no dbd file, but that might be OK */
/* no dbd file, but that might be OK */
printf
(
"%s has no dbd file
\n
"
,
module
);
printf
(
"%s has no dbd file
\n
"
,
module
);
...
@@ -1163,7 +1176,7 @@ static int require_priv(const char *module, const char *version) {
...
@@ -1163,7 +1176,7 @@ static int require_priv(const char *module, const char *version) {
putenvprintf
(
"TEMPLATES=%s"
,
globalTemplates
);
putenvprintf
(
"TEMPLATES=%s"
,
globalTemplates
);
}
}
require_priv_e
rror
:
require_priv_e
nd
:
if
(
founddir
)
free
(
founddir
);
if
(
founddir
)
free
(
founddir
);
return
returnvalue
;
return
returnvalue
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment