From: Yang Tse Date: Mon, 28 Sep 2009 17:01:23 +0000 (+0000) Subject: fix compiler warning: conversion from "long" to "size_t" may lose sign X-Git-Tag: curl-7_19_7~105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5b11e3883cfc58c470f0dd241d5efac391bd8e53;p=thirdparty%2Fcurl.git fix compiler warning: conversion from "long" to "size_t" may lose sign --- diff --git a/lib/cookie.c b/lib/cookie.c index 6b19ab1669..d121c0b299 100644 --- a/lib/cookie.c +++ b/lib/cookie.c @@ -442,9 +442,9 @@ Curl_cookie_add(struct SessionHandle *data, if(!queryp) endslash = strrchr(path, '/'); else - endslash = memrchr(path, '/', queryp - path); + endslash = memrchr(path, '/', (size_t)(queryp - path)); if(endslash) { - size_t pathlen = endslash-path+1; /* include the ending slash */ + size_t pathlen = (size_t)(endslash-path+1); /* include ending slash */ co->path=malloc(pathlen+1); /* one extra for the zero byte */ if(co->path) { memcpy(co->path, path, pathlen);