Convert some malloc + strncpy pairs into strndup calls

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
Alan Coopersmith
2011-10-24 23:16:30 -07:00
parent acde97a39d
commit 08093c25a9
3 changed files with 4 additions and 11 deletions

View File

@@ -1049,12 +1049,10 @@ KdGetOptions (InputOption **options, char *string)
if (strchr(string, '='))
{
tam_key = (strchr(string, '=') - string);
key = malloc(tam_key + 1);
key = strndup(string, tam_key);
if (!key)
goto out;
strncpy(key, string, tam_key);
key[tam_key] = '\0';
value = strdup(strchr(string, '=') + 1);
if (!value)
goto out;