Some interactive elements (branch dropdowns, the user menu, the clone popover) need JavaScript. Reading repositories, issues, patches, and the docs works without it; submitting forms also works as long as you can reach them via direct links.
Radish
alpha
Explore
Docs
Sign in
H
HardenedBSD-pkg
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Clone
Radicle
Git (anonymous pull)
Log in
to clone via SSH
Source
Commits
10440
Issues
Patches
Jobs
Commits
›
d5601e6be31267803f449c610dc208b25417b0b0
Fix potential dereferencement of NULL pointer
Baptiste Daroussin
committed
12 years ago
commit d5601e6be31267803f449c610dc208b25417b0b0
parent
5751f49b752b1d1589f2b000b7bb0b3bab26aca5
1 file changed
+3
-0
modified
libpkg/pkg_config.c
@@ -698,6 +698,9 @@ disable_plugins_if_static(void)
HASH_FIND_INT(config, &k, conf);
+
if (conf == NULL)
+
return;
+
if (!conf->boolean)
return;