0

我正在尝试验证用户输入的 URL 是否符合要求的格式,在这种情况下,我试图删除http://它是否存在,但我遇到了一些非常奇怪的问题......

如果我输入函数“ www.google.com”或“ http://www.google.com”,一切都会按预期进行!但是,如果我给它提供一些不是有效 URL 的东西(例如土豆),它会返回位于内存中的乱码......

为什么这不是一个问题,它绝对不是预期的程序行为,我不知道为什么它会这样......

Enter URL: potato

Error! Could not resolve ip address for host: ╪☻ï*** Process returned 1 ***
Press any key to continue...

这是有问题的功能:

char *bldurl(const char *url)
{
    char *nurl;
    int ch = 0, i = 0;

    if(chksbstr(url, "http://") < 0)
    {
        if(!(nurl = malloc(strln(url) + 8)))
        {
            printf("\nError! Memory allocation failed while appending URL!");
            return 0x00;
        }
        nurl[ch] = 'h';
        nurl[++ch] = 't';
        nurl[++ch] = 't';
        nurl[++ch] = 'p';
        nurl[++ch] = ':';
        nurl[++ch] = '/';
        nurl[++ch] = '/';
        for(++ch; i <= strln(url); ch++, i++) nurl[ch] = url[i];
        nurl[--ch] = 0x00; 
    }
    else
    {
        if(!(nurl = malloc(strln(url) + 1)))
        {
            printf("\nError! Memory allocation failed while appending URL!");
            return 0x00;
        }
        for(i = 0; i <= strln(url); i++) nurl[i] = url[i];
        nurl[i + 1] = 0x00;
    }
    return nurl;
}

这是我的代码中返回该特定错误消息的部分:

    if(!(hostip = gethostbyname(hostname)))
    {
        free(hostname);
        free(url);
        printf("\nError! Could not resolve ip address for host: %s", hostname);
        WSACleanup();
        return 0x00;
    }

hostname在上面的代码中是来自 for 提到的函数的返回值。

我真的不知道该怎么想。

4

2 回答 2

5

您在主机名上调用“免费”,然后尝试将其打印出来;当然,这将是一些不可读的东西!你真的应该打印它然后释放它,我猜。

于 2012-08-27T00:17:44.823 回答
4

您不能释放主机名然后打印它。

于 2012-08-27T00:16:38.700 回答