summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2016-02-04 11:54:20 -0700
committerTom Rini <trini@konsulko.com>2016-02-08 10:22:38 -0500
commitee05fedc6c89a41cad19b626fcde0b70ad532ea2 (patch)
treed79da2579de81367de1b3da7b66ef5b9abc6e0e1 /common
parent7c60423106bebafedbdd9879d84d105b3fb03930 (diff)
downloadtalos-obmc-uboot-ee05fedc6c89a41cad19b626fcde0b70ad532ea2.tar.gz
talos-obmc-uboot-ee05fedc6c89a41cad19b626fcde0b70ad532ea2.zip
malloc: solve dead code issue in memalign()
The recent change to memalign() caused the allocation failure detection code to be dead code; the "retry" logic is always activated under the same condition that the original failure detection code is, and also fully handles any possible failures. This patch solves the presence of dead code. Two alternatives are possible: a) Delete the now-dead test, and rely on the "retry" path to handle any allocation problems, as it does. b) Make the "retry" path fall through to the existing (currently dead) failure detection code, thus making it not-dead. (b) was chosen since it reduces the diff between U-Boot's and the upstream dlmalloc. This should make it marginally easier to import a new version of dlmalloc in the future. Reported by: Coverity Scan Fixes: 4f144a416469 ("malloc: work around some memalign fragmentation issues") Signed-off-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r--common/dlmalloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/dlmalloc.c b/common/dlmalloc.c
index 2b964d16b1..5ea37dfb6e 100644
--- a/common/dlmalloc.c
+++ b/common/dlmalloc.c
@@ -2848,7 +2848,7 @@ Void_t* mEMALIGn(alignment, bytes) size_t alignment; size_t bytes;
return m;
/* Otherwise, fail */
fREe(m);
- return NULL;
+ m = NULL;
}
if (m == NULL) return NULL; /* propagate failure */
OpenPOWER on IntegriCloud