* [PATCH] ibacm: Check dynamic memory allocation results
@ 2011-11-28 19:35 Dotan Barak
[not found] ` <201111282135.11283.dotanb-g2bIKuvJtcQanlnWow0HJg@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Dotan Barak @ 2011-11-28 19:35 UTC (permalink / raw)
To: Sean Hefty; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA
After allocation of dynamic memory blocks, check that the allocation succeeded,
if it failed handle it gracefully.
Signed-off-by: Dotan Barak <dotanb-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
Reviewed-by: Erez Shitrit <erezsh-VPRAkNaXOzVS1MOuV/RT9w@public.gmane.org>
---
src/parse.c | 22 ++++++++++++++++------
1 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/src/parse.c b/src/parse.c
index d1c820f..6ab6041 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -71,14 +71,15 @@ static char *expand(char *basename, char *args, int *str_cnt, int *str_size)
char **parse(char *args, int *count)
{
- char **ptrs;
+ char **ptrs = NULL;
char *str_buf, *cpy, *token, *next;
int cnt = 0, str_size = 0;
int i;
/* make a copy that strtok can modify */
- cpy = malloc(strlen(args) + 1);
- strcpy(cpy, args);
+ cpy = strdup(args);
+ if (!cpy)
+ return NULL;
if (args[0] == '[') {
cpy[0] = '\0';
@@ -92,6 +93,8 @@ char **parse(char *args, int *count)
if (!next) {
str_size = strlen(token) + 1;
str_buf = malloc(str_size);
+ if (!str_buf)
+ goto out_cpy;
strcpy(str_buf, token);
cnt = 1;
} else {
@@ -99,6 +102,9 @@ char **parse(char *args, int *count)
}
ptrs = malloc((sizeof str_buf * (cnt + 1)) + str_size);
+ if (!ptrs)
+ goto out_str_buf;
+
memcpy(&ptrs[cnt + 1], str_buf, str_size);
ptrs[0] = (char*) &ptrs[cnt + 1];
@@ -106,10 +112,14 @@ char **parse(char *args, int *count)
ptrs[i] = index(ptrs[i - 1], 0) + 1;
ptrs[i] = NULL;
- free(cpy);
- free(str_buf);
-
if (count)
*count = cnt;
+
+out_str_buf:
+ free(str_buf);
+
+out_cpy:
+ free(cpy);
+
return ptrs;
}
--
1.7.4.1
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [PATCH] ibacm: Check dynamic memory allocation results
[not found] ` <201111282135.11283.dotanb-g2bIKuvJtcQanlnWow0HJg@public.gmane.org>
@ 2011-11-28 20:24 ` Hefty, Sean
0 siblings, 0 replies; 2+ messages in thread
From: Hefty, Sean @ 2011-11-28 20:24 UTC (permalink / raw)
To: Dotan Barak; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
thanks - applied
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-11-28 20:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-28 19:35 [PATCH] ibacm: Check dynamic memory allocation results Dotan Barak
[not found] ` <201111282135.11283.dotanb-g2bIKuvJtcQanlnWow0HJg@public.gmane.org>
2011-11-28 20:24 ` Hefty, Sean
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox