[PATCH 04/12] gr_leon4_n2x.c: Fix Unchecked return value from library (CID #1399767)
Ryan Long
thisisryanlong at gmail.com
Thu Mar 4 19:50:17 UTC 2021
CID 1399767: Unchecked return value error from library in gr_cpci_leon4_n2x_init1().
Closes #4285
---
bsps/sparc/shared/pci/gr_leon4_n2x.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/bsps/sparc/shared/pci/gr_leon4_n2x.c b/bsps/sparc/shared/pci/gr_leon4_n2x.c
index 9baf73e..af7a5d7 100644
--- a/bsps/sparc/shared/pci/gr_leon4_n2x.c
+++ b/bsps/sparc/shared/pci/gr_leon4_n2x.c
@@ -478,6 +478,7 @@ int gr_cpci_leon4_n2x_init1(struct drvmgr_dev *dev)
int status, i;
union drvmgr_key_value *value;
int resources_cnt;
+ int sc;
priv = dev->priv;
if (!priv)
@@ -494,7 +495,8 @@ int gr_cpci_leon4_n2x_init1(struct drvmgr_dev *dev)
strcpy(priv->prefix, "/dev/leon4n2x0");
priv->prefix[13] += dev->minor_drv;
- mkdir(priv->prefix, S_IRWXU | S_IRWXG | S_IRWXO);
+ sc = mkdir(priv->prefix, S_IRWXU | S_IRWXG | S_IRWXO);
+ _Assert_Unused_variable_equals(sc, 0);
priv->prefix[14] = '/';
priv->prefix[15] = '\0';
--
1.8.3.1
More information about the devel
mailing list