X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fcomstack.c;h=4c8fe05eaec496864f3f2de10615a470f60df62b;hb=2dbe1df5facb92bac31b5da0ca2e2e8ee6f9b358;hp=896127b1c6e58abc4168c54744447c8d1fcd2709;hpb=377e50914cd78d52e77032a3eaf8972f23b4e7b9;p=yaz-moved-to-github.git diff --git a/src/comstack.c b/src/comstack.c index 896127b..4c8fe05 100644 --- a/src/comstack.c +++ b/src/comstack.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: comstack.c,v 1.21 2007-10-09 06:00:56 adam Exp $ + * $Id: comstack.c,v 1.22 2007-11-30 11:44:47 adam Exp $ */ /** @@ -85,7 +85,7 @@ static int cs_parse_host(const char *uri, const char **host, if (cp) { size_t len = cp - (uri + 8); - *connect_host = xmalloc(len+1); + *connect_host = (char *) xmalloc(len+1); memcpy(*connect_host, uri + 8, len); (*connect_host)[len] = '\0'; uri = cp+1;