summaryrefslogtreecommitdiff
path: root/src/getauth.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-08-08 22:31:41 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-08-08 22:31:41 -0700
commit9a74512ffdc1628f1b87d2191439915c63b9104f (patch)
tree8a58dec4a8604228908b09cdb69a286d89c271d2 /src/getauth.c
parent4033226105fa861ab5f0276850afc24c0fa45406 (diff)
Stop casting return values from malloc
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/getauth.c')
-rw-r--r--src/getauth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/getauth.c b/src/getauth.c
index e127206..09e0e1c 100644
--- a/src/getauth.c
+++ b/src/getauth.c
@@ -70,7 +70,7 @@ _IceGetPoAuthData (
{
*authDataLenRet = entry->auth_data_length;
- if ((*authDataRet = (char *) malloc (entry->auth_data_length)) != NULL)
+ if ((*authDataRet = malloc (entry->auth_data_length)) != NULL)
memcpy (*authDataRet, entry->auth_data, entry->auth_data_length);
}
else
@@ -111,7 +111,7 @@ _IceGetPaAuthData (
{
*authDataLenRet = entry->auth_data_length;
- if ((*authDataRet = (char *) malloc (entry->auth_data_length)) != NULL)
+ if ((*authDataRet = malloc (entry->auth_data_length)) != NULL)
memcpy (*authDataRet, entry->auth_data, entry->auth_data_length);
}
else