david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

convert to zalloc

This commit is contained in:
Holger Lubitz 2007-06-18 01:24:51 +02:00
parent 75ff85441b
commit 6def8592ed
1 changed files with 1 additions and 2 deletions

View File

@ -77,13 +77,12 @@ struct uri * parse_uri ( const char *uri_string ) {
/* Allocate space for URI struct and a copy of the string */
raw_len = ( strlen ( uri_string ) + 1 /* NUL */ );
uri = malloc ( sizeof ( *uri ) + raw_len );
uri = zalloc ( sizeof ( *uri ) + raw_len );
if ( ! uri )
return NULL;
raw = ( ( ( char * ) uri ) + sizeof ( *uri ) );
/* Zero URI struct and copy in the raw string */
memset ( uri, 0, sizeof ( *uri ) );
memcpy ( raw, uri_string, raw_len );
/* Start by chopping off the fragment, if it exists */