Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
intel
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Feed
intel
Merge requests
!12
hostapd: fix 5GHz fails to start after reboot
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
hostapd: fix 5GHz fails to start after reboot
hostapd-fix-5g
into
release-4.3
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Reidar Cederqvist - Genexis
requested to merge
hostapd-fix-5g
into
release-4.3
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
The hostapd multi_ap_blacklist was accessed before initialized, which caused memory fault
0
0
Merge request reports
Compare
release-4.3
release-4.3 (base)
and
latest version
latest version
575efe98
1 commit,
4 years ago
1 file
+
11
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
hostapd_wave/patches/0601-hostapd-init-blacklist.patch
0 → 100644
+
11
−
0
Options
--- a/src/ap/hostapd.c
+++ b/src/ap/hostapd.c
@@ -2198,6 +2198,8 @@
hostapd_alloc_bss_data(struct hostapd_if
hapd->ctrl_sock = -1;
dl_list_init(&hapd->ctrl_dst);
dl_list_init(&hapd->nr_db);
+ dl_list_init(&hapd->erp_keys);
+ dl_list_init(&hapd->multi_ap_blacklist);
return hapd;
}
Loading