Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
570f6f5e
Commit
570f6f5e
authored
Mar 13, 2022
by
Rob Swindell
💬
Browse files
Fix CID 319133: Unchecked return value
parent
5ee74077
Pipeline
#2882
passed with stage
in 14 minutes and 26 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/sbbs3/main.cpp
src/sbbs3/main.cpp
+2
-1
No files found.
src/sbbs3/main.cpp
View file @
570f6f5e
...
...
@@ -2780,7 +2780,8 @@ void event_thread(void* arg)
SAFEPRINTF2
(
str
,
"%5u of %-5u"
,
i
,
j
);
//status(str);
sbbs
->
useron
.
number
=
i
;
fgetuserdat
(
&
sbbs
->
cfg
,
&
sbbs
->
useron
,
userfile
);
if
(
fgetuserdat
(
&
sbbs
->
cfg
,
&
sbbs
->
useron
,
userfile
)
!=
0
)
continue
;
if
(
sbbs
->
useron
.
number
&&
!
(
sbbs
->
useron
.
misc
&
(
DELETED
|
INACTIVE
))
/* Pre-QWK */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment