0

考虑以下功能:

int get_timestamp(json_object *json_obj, double *timestamp) {
    json_object *value_obj;
    int status;
    if (json_object_object_get_ex(json_obj, "timestamp", &value_obj)) {
        if (json_object_is_type(value_obj, json_type_double)) {
            *timestamp = json_object_get_double(value_obj);
            status = JSONPARSER_OK;
        }
        else
            status = JSONPARSER_EBADTYPE;
    } else
        status = JSONPARSER_ENODENOTFOUND;
    free(value_obj);
    return status;
}

int get_display_name(json_object *json_obj, char **display_name) {
    json_object *value_obj;
    int status;
    const char* holder;
    if (json_object_object_get_ex(json_obj, "display_name", &value_obj)) {
        if (json_object_is_type(value_obj, json_type_string)) {
            // The returned string memory is managed by the json_object and will
            // be freed when the reference count of the json_object drops to zero.
            holder = json_object_get_string(value_obj);
            strcpy(*display_name, holder);
            status = JSONPARSER_OK;
        }
        else
            status = JSONPARSER_EBADTYPE;
    } else
        status = JSONPARSER_ENODENOTFOUND;
    free(value_obj);
    return status;
}

int get_organization(json_object *json_obj, char **organization) {
    json_object *value_obj;
    int status;
    const char* holder;
    if (json_object_object_get_ex(json_obj, "organization", &value_obj)) {
        if (json_object_is_type(value_obj, json_type_string)) {
            // The returned string memory is managed by the json_object and will
            // be freed when the reference count of the json_object drops to zero.
            holder = json_object_get_string(value_obj);
            strcpy(*organization, holder);
            status = JSONPARSER_OK;
        }
        else
            status = JSONPARSER_EBADTYPE;
    } else
        status = JSONPARSER_ENODENOTFOUND;
    free(value_obj);
    return status;
}

用作:

json_object *response_obj, *idp_obj;
int status;
char *display_name;
char *organization;
response_obj = json_tokener_parse(raw_data);
json_object_object_get_ex(response_obj, "idp", &idp_obj);

get_timestamp(response_obj, timestamp);
get_display_name(idp_obj, &display_name);
get_organization(idp_obj, &organization);

free(idp_obj);
free(response_obj);
return status;

怎么了:

1)通过删除get_organization(idp_obj, &organization);一切似乎工作正常;

2)通过删除get_display_name(idp_obj, &display_name);一切似乎又可以正常工作了;

3)使用“原样”代码,strcpy方法内部使用的错误get_organization

No source available for "__strcpy_sse2_unaligned() at 0x7ffff763f001" 

我真的很想了解这种行为,以提高我对这种令人惊叹但难懂的语言的了解。

4

1 回答 1

0

该错误消息是调试器错误消息,因为它位于无法找到源的函数中。您唯一需要做的就是沿着函数调用堆栈向上走,直到到达您的代码。

至于为什么调试器在那个函数中停止,那真的应该是另一个问题,但我还是会回答它:这是因为未定义的行为,因为你传递给它的目标指针是一个未初始化的局部变量:display_name. 在您调用的代码中,get_display_name您声明了局部变量display_name,但您没有对其进行初始化。未初始化的非静态局部变量的值是不确定的,并且在没有初始化的情况下使用它们会导致未定义的行为。

对于这个问题,您基本上有两种解决方案:要么声明display_name为固定大小的数组,要么使用使其指向有效分配的内存,例如使用malloc.

organization变量也会有同样的问题。

于 2015-08-26T14:17:00.487 回答