为什么在行“BIO_flush(b64);”处收到此警告消息“警告:未使用计算所得的值”;我该如何摆脱呢?

unsigned char *my_base64(unsigned char *input, int length)
{
    BIO *bmem, *b64;
    BUF_MEM *bptr;

    b64 = BIO_new(BIO_f_base64());
    bmem = BIO_new(BIO_s_mem());
    b64 = BIO_push(b64, bmem);
    BIO_write(b64, input, length);
    BIO_flush(b64);
    BIO_get_mem_ptr(b64, &bptr);

    unsigned char *buff = (unsigned char *)malloc(bptr->length+1);
    memcpy(buff, bptr->data, bptr->length-1);
    buff[bptr->length-1] = 0;

    BIO_free_all(b64);

    return buff;
}

最佳答案

处理这些错误的常用方法是“明确地放弃返回值”:

(void) BIO_flush(b64);

或者,您可以选择通过添加-Wno-unused-value标志来完全关闭此警告。

以上显然假设您对返回值不感兴趣。如果不确定,请仔细查看文档中返回的内容,然后决定是否要存储/使用它。

07-27 13:18