Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
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
Main
Synchronet
Commits
4a605579
Commit
4a605579
authored
23 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Created FREE_AR macro.
parent
e0d705e1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/sbbs3/scfglib.h
+6
-2
6 additions, 2 deletions
src/sbbs3/scfglib.h
src/sbbs3/scfglib1.c
+22
-0
22 additions, 0 deletions
src/sbbs3/scfglib1.c
src/sbbs3/scfglib2.c
+31
-2
31 additions, 2 deletions
src/sbbs3/scfglib2.c
with
59 additions
and
4 deletions
src/sbbs3/scfglib.h
+
6
−
2
View file @
4a605579
...
...
@@ -47,13 +47,17 @@
memset(var,0,sizeof(var)); \
offset+=sizeof(var); }
extern
const
char
*
scfgnulstr
;
extern
const
uchar
*
nular
;
#define FREE_AND_NULL(x) if(x!=NULL) { FREE(x); x=NULL; }
/* The FREE_ALLOC macro is used for get_alloc() buffers only */
#ifdef SCFG
#define FREE_AR(x)
/* static */
#define FREE_ALLOC(x)
/* static */
#else
#define FREE_ALLOC(x) if(x!=NULL && x!=scfgnulstr) { FREE(x); x=NULL; }
#define FREE_AR(x) if(x!=NULL && x!=nular) { FREE(x); }
/* allocated with arstr() */
#define FREE_ALLOC(x) if(x!=NULL && x!=scfgnulstr) { FREE(x); }
/* allocated with get_alloc() */
#endif
typedef
struct
{
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/scfglib1.c
+
22
−
0
View file @
4a605579
...
...
@@ -902,6 +902,8 @@ void free_node_cfg(scfg_t* cfg)
{
int
i
;
FREE_AR
(
cfg
->
node_ar
);
if
(
cfg
->
mdm_result
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
mdm_results
;
i
++
)
{
FREE_ALLOC
(
cfg
->
mdm_result
[
i
].
str
);
...
...
@@ -921,6 +923,8 @@ void free_main_cfg(scfg_t* cfg)
{
int
i
;
FREE_AR
(
cfg
->
sys_chat_ar
);
if
(
cfg
->
node_path
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
sys_nodes
;
i
++
)
FREE_AND_NULL
(
cfg
->
node_path
[
i
]);
...
...
@@ -928,6 +932,7 @@ void free_main_cfg(scfg_t* cfg)
}
if
(
cfg
->
shell
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_shells
;
i
++
)
{
FREE_AR
(
cfg
->
shell
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
shell
[
i
]
->
name
);
FREE_AND_NULL
(
cfg
->
shell
[
i
]);
}
...
...
@@ -939,8 +944,10 @@ void free_msgs_cfg(scfg_t* cfg)
{
int
i
;
FREE_AR
(
cfg
->
preqwk_ar
);
if
(
cfg
->
grp
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_grps
;
i
++
)
{
FREE_AR
(
cfg
->
grp
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
grp
[
i
]
->
lname
);
FREE_ALLOC
(
cfg
->
grp
[
i
]
->
sname
);
FREE_AND_NULL
(
cfg
->
grp
[
i
]);
...
...
@@ -950,6 +957,21 @@ void free_msgs_cfg(scfg_t* cfg)
if
(
cfg
->
sub
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_subs
;
i
++
)
{
#ifndef SCFG
if
(
cfg
->
sub
[
i
]
->
data_dir
!=
cfg
->
data_dir_subs
)
FREE_AND_NULL
(
cfg
->
sub
[
i
]
->
data_dir
);
if
(
cfg
->
sub
[
i
]
->
tagline
!=
cfg
->
qnet_tagline
)
FREE_AND_NULL
(
cfg
->
sub
[
i
]
->
tagline
);
if
(
cfg
->
sub
[
i
]
->
origline
!=
cfg
->
origline
)
FREE_AND_NULL
(
cfg
->
sub
[
i
]
->
origline
);
if
(
cfg
->
sub
[
i
]
->
echomail_sem
!=
cfg
->
echomail_sem
)
FREE_AND_NULL
(
cfg
->
sub
[
i
]
->
echomail_sem
);
#endif
FREE_AR
(
cfg
->
sub
[
i
]
->
ar
);
FREE_AR
(
cfg
->
sub
[
i
]
->
read_ar
);
FREE_AR
(
cfg
->
sub
[
i
]
->
post_ar
);
FREE_AR
(
cfg
->
sub
[
i
]
->
op_ar
);
FREE_AR
(
cfg
->
sub
[
i
]
->
mod_ar
);
FREE_ALLOC
(
cfg
->
sub
[
i
]
->
lname
);
FREE_ALLOC
(
cfg
->
sub
[
i
]
->
sname
);
FREE_ALLOC
(
cfg
->
sub
[
i
]
->
qwkname
);
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/scfglib2.c
+
31
−
2
View file @
4a605579
...
...
@@ -47,8 +47,6 @@
#define get_alloc(o,s,l,i) s=get_alloc(o,s,l,i)
#endif
extern
const
char
*
scfgnulstr
;
#ifndef NO_FILE_CFG
/****************************************************************************/
...
...
@@ -1099,6 +1097,7 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
fextr
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_fextrs
;
i
++
)
{
FREE_AR
(
cfg
->
fextr
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
fextr
[
i
]
->
cmd
);
FREE_AND_NULL
(
cfg
->
fextr
[
i
]);
}
...
...
@@ -1107,6 +1106,7 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
fcomp
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_fcomps
;
i
++
)
{
FREE_AR
(
cfg
->
fcomp
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
fcomp
[
i
]
->
cmd
);
FREE_AND_NULL
(
cfg
->
fcomp
[
i
]);
}
...
...
@@ -1115,6 +1115,7 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
fview
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_fviews
;
i
++
)
{
FREE_AR
(
cfg
->
fview
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
fview
[
i
]
->
cmd
);
FREE_AND_NULL
(
cfg
->
fview
[
i
]);
}
...
...
@@ -1123,6 +1124,7 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
ftest
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_ftests
;
i
++
)
{
FREE_AR
(
cfg
->
ftest
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
ftest
[
i
]
->
cmd
);
FREE_ALLOC
(
cfg
->
ftest
[
i
]
->
workstr
);
FREE_AND_NULL
(
cfg
->
ftest
[
i
]);
...
...
@@ -1132,6 +1134,7 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
dlevent
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_dlevents
;
i
++
)
{
FREE_AR
(
cfg
->
dlevent
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
dlevent
[
i
]
->
cmd
);
FREE_ALLOC
(
cfg
->
dlevent
[
i
]
->
workstr
);
FREE_AND_NULL
(
cfg
->
dlevent
[
i
]);
...
...
@@ -1141,6 +1144,7 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
prot
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_prots
;
i
++
)
{
FREE_AR
(
cfg
->
prot
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
prot
[
i
]
->
name
);
FREE_ALLOC
(
cfg
->
prot
[
i
]
->
ulcmd
);
FREE_ALLOC
(
cfg
->
prot
[
i
]
->
dlcmd
);
...
...
@@ -1161,6 +1165,7 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
lib
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_libs
;
i
++
)
{
FREE_AR
(
cfg
->
lib
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
lib
[
i
]
->
lname
);
FREE_ALLOC
(
cfg
->
lib
[
i
]
->
sname
);
FREE_AND_NULL
(
cfg
->
lib
[
i
]);
...
...
@@ -1170,6 +1175,16 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
dir
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_dirs
;
i
++
)
{
#ifndef SCFG
if
(
cfg
->
dir
[
i
]
->
data_dir
!=
cfg
->
data_dir_dirs
)
FREE_AND_NULL
(
cfg
->
dir
[
i
]
->
data_dir
);
FREE_AND_NULL
(
cfg
->
dir
[
i
]
->
path
);
#endif
FREE_AR
(
cfg
->
dir
[
i
]
->
ar
);
FREE_AR
(
cfg
->
dir
[
i
]
->
ul_ar
);
FREE_AR
(
cfg
->
dir
[
i
]
->
dl_ar
);
FREE_AR
(
cfg
->
dir
[
i
]
->
op_ar
);
FREE_AR
(
cfg
->
dir
[
i
]
->
ex_ar
);
FREE_ALLOC
(
cfg
->
dir
[
i
]
->
lname
);
FREE_ALLOC
(
cfg
->
dir
[
i
]
->
sname
);
FREE_ALLOC
(
cfg
->
dir
[
i
]
->
exts
);
...
...
@@ -1181,6 +1196,7 @@ void free_file_cfg(scfg_t* cfg)
if
(
cfg
->
txtsec
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_txtsecs
;
i
++
)
{
FREE_AR
(
cfg
->
txtsec
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
txtsec
[
i
]
->
name
);
FREE_AND_NULL
(
cfg
->
txtsec
[
i
]);
}
...
...
@@ -1211,6 +1227,7 @@ void free_chat_cfg(scfg_t* cfg)
if
(
cfg
->
chan
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_chans
;
i
++
)
{
FREE_AR
(
cfg
->
chan
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
chan
[
i
]
->
name
);
FREE_AND_NULL
(
cfg
->
chan
[
i
]);
}
...
...
@@ -1219,6 +1236,7 @@ void free_chat_cfg(scfg_t* cfg)
if
(
cfg
->
guru
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_gurus
;
i
++
)
{
FREE_AR
(
cfg
->
guru
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
guru
[
i
]
->
name
);
FREE_AND_NULL
(
cfg
->
guru
[
i
]);
}
...
...
@@ -1227,6 +1245,7 @@ void free_chat_cfg(scfg_t* cfg)
if
(
cfg
->
page
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_pages
;
i
++
)
{
FREE_AR
(
cfg
->
page
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
page
[
i
]
->
cmd
);
FREE_AND_NULL
(
cfg
->
page
[
i
]);
}
...
...
@@ -1249,6 +1268,7 @@ void free_xtrn_cfg(scfg_t* cfg)
if
(
cfg
->
xedit
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_xedits
;
i
++
)
{
FREE_AR
(
cfg
->
xedit
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
xedit
[
i
]
->
name
);
FREE_ALLOC
(
cfg
->
xedit
[
i
]
->
lcmd
);
FREE_ALLOC
(
cfg
->
xedit
[
i
]
->
rcmd
);
...
...
@@ -1259,6 +1279,7 @@ void free_xtrn_cfg(scfg_t* cfg)
if
(
cfg
->
xtrnsec
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_xtrnsecs
;
i
++
)
{
FREE_AR
(
cfg
->
xtrnsec
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
xtrnsec
[
i
]
->
name
);
FREE_AND_NULL
(
cfg
->
xtrnsec
[
i
]);
}
...
...
@@ -1267,6 +1288,11 @@ void free_xtrn_cfg(scfg_t* cfg)
if
(
cfg
->
xtrn
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_xtrns
;
i
++
)
{
#ifndef SCFG
FREE_AND_NULL
(
cfg
->
xtrn
[
i
]
->
path
);
#endif
FREE_ALLOC
(
cfg
->
xtrn
[
i
]
->
ar
);
FREE_ALLOC
(
cfg
->
xtrn
[
i
]
->
run_ar
);
FREE_ALLOC
(
cfg
->
xtrn
[
i
]
->
name
);
FREE_ALLOC
(
cfg
->
xtrn
[
i
]
->
cmd
);
FREE_ALLOC
(
cfg
->
xtrn
[
i
]
->
clean
);
...
...
@@ -1277,6 +1303,9 @@ void free_xtrn_cfg(scfg_t* cfg)
if
(
cfg
->
event
!=
NULL
)
{
for
(
i
=
0
;
i
<
cfg
->
total_events
;
i
++
)
{
#ifndef SCFG
FREE_AND_NULL
(
cfg
->
event
[
i
]
->
dir
);
#endif
FREE_ALLOC
(
cfg
->
event
[
i
]
->
cmd
);
FREE_AND_NULL
(
cfg
->
event
[
i
]);
}
...
...
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