Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Synchronet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
127
Issues
127
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main
Synchronet
Compare Revisions
d54d125cf38e42d852d7d2f7da97e55266786754...4187942a94aeb8489a4a1371abf99990d24dc76c
Source
4187942a94aeb8489a4a1371abf99990d24dc76c
Select Git revision
...
Target
d54d125cf38e42d852d7d2f7da97e55266786754
Select Git revision
Compare
Commits (1)
Fix build issue on *nix with the new protected int destroy macros.
· 4187942a
Rob Swindell
authored
Feb 21, 2021
4187942a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/sbbs3/main.cpp
src/sbbs3/main.cpp
+2
-2
No files found.
src/sbbs3/main.cpp
View file @
4187942a
...
...
@@ -4992,8 +4992,8 @@ static void cleanup(int code)
listFree
(
&
current_logins
);
listFree
(
&
current_connections
);
(
void
)
protected_uint32_destroy
(
node_threads_running
);
(
void
)
protected_uint32_destroy
(
ssh_sessions
);
protected_uint32_destroy
(
node_threads_running
);
protected_uint32_destroy
(
ssh_sessions
);
status
(
"Down"
);
thread_down
();
...
...