知道比较两个文件时发生的分段错误在哪里

问题描述 投票:0回答:1

我有以下结构:

int main(int argc, char **argv) {
     try {
        FX3USBConnection fx3USB3Connection = FX3USB3Connection();
        fx3USB3Connection.send_text_file();
    }
    catch (ErrorOpeningLib& e) {
        printf("Error opening library\n");
        return -1;
    }
    catch (NoDeviceFound& e) {
        printf("No device found\n");
        return 0;
    }

    return 0;
}

在send_text_files中,我做的最后一件事是比较两个文本文件,如下所示:

printf("Loopback recieved, checking if I received the same that I sended\n");
files_match(out_text_filename, in_text_filename);
printf("Exited without problem");
return; // (actually implicit)

我已经使用了2个版本的files_match函数,但最后一个是这个Compare two files的精确副本

bool FX3USB3Connection::files_match(const std::string &p1, const std::string &p2) {
    bool files_match;
    std::ifstream f1(p1, std::ifstream::binary|std::ifstream::ate);
    std::ifstream f2(p2, std::ifstream::binary|std::ifstream::ate);

    if (f1.fail() || f2.fail()) {
        return false; //file problem
    }

    if (f1.tellg() != f2.tellg()) {
        return false; //size mismatch
    }

    //seek back to beginning and use std::equal to compare contents
    f1.seekg(0, std::ifstream::beg);
    f2.seekg(0, std::ifstream::beg);
    files_match = std::equal(std::istreambuf_iterator<char>(f1.rdbuf()),
                      std::istreambuf_iterator<char>(),
                      std::istreambuf_iterator<char>(f2.rdbuf()));
    f1.close();
    f2.close();
    if (files_match) { printf("Files match\n"); }
    else { printf("Files not equal\n"); }
    return files_match;
}

有时我会收到错误,有时我却不会。当我得到错误时,我得到:

Loopback recieved, checking if I received the same that I sended
Files match

Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)

因此,调用files_match后的打印不打印,所以我猜问题是在函数内。但是,我在return语句之前执行打印并正确打印。

PS:我评论了功能files_match,我没有问题。

PS1:文件可以有这样的字符:¥

c++ file-io segmentation-fault ifstream
1个回答
-1
投票

是的,正如@john建议的那样,我必须添加fflush()函数。在那里,我意识到错误实际上在所有这个循环之外,但实际上是在退出try {}部分时。它接触到我不能破坏fx3USBConnection。

谢谢!我知道fprint实际上是缓冲的,所以我误导了。

© www.soinside.com 2019 - 2024. All rights reserved.