1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 15:48:49 -05:00

added typecasts when converting from unsigned int to int

This commit is contained in:
Daniel Stenberg 2001-08-14 08:20:17 +00:00
parent e32641d412
commit 7b4b166718

View File

@ -39,7 +39,7 @@
char *curl_escape(char *string, int length)
{
int alloc = (length?length:strlen(string))+1;
int alloc = (length?length:(int)strlen(string))+1;
char *ns = malloc(alloc);
unsigned char in;
int newlen = alloc;
@ -77,7 +77,7 @@ char *curl_escape(char *string, int length)
char *curl_unescape(char *string, int length)
{
int alloc = (length?length:strlen(string))+1;
int alloc = (length?length:(int)strlen(string))+1;
char *ns = malloc(alloc);
unsigned char in;
int index=0;