0

在我的程序中使用时出现一些奇怪的行为cout,类似于以下内容:

...
char *input = realpath(argv[1], NULL);
char *output = argv[2];

char *tarout = new char[strlen(output)+6];
strcpy(tarout, output);
strcat(tarout, ".temp");

cout << "Tarout: " << tarout << endl;

int tRet = tarball(input, tarout);
if(tRet != 1) {
    cerr << "Error: Could not compress directory!\nHalting package creation!" << endl;
    return 0;
}

int gRet = gzip(tarout, output);
if(gRet != 1) {
    cerr << "Error: Could not compress directory!\nHalting package creation!" << endl;
    return 0;
} else {
    cout << "TAROUT: " << tarout << endl;
    if((remove(tarout))!=0) {
        cerr << "Warning: Could not delete temporary file!" << endl;
        return 0;
    }
}
...

基本上这个程序会创建一个 tar 文件,然后用 gzip 压缩它,这不是 100% 的实际代码,所以它可能不会给出与我收到的相同的奇怪行为。

如果我删除了第一个cout << "TAROUT: " << tarout << endl;,第二个cout << "TAROUT: " << tarout << endl;将不会返回任何内容,并且临时文件不会被删除,这是为什么呢?

4

1 回答 1

3

new/malloc 不初始化内存,所以我相当肯定你在 tarout 结束时没有 NULL 终止符。

我怀疑如果您通过调试器运行原始代码或简单地打印出 *(tarout+5),您会看到那里没有“0”。

鉴于您对使用 std::string 的评论,我会写:

const char * file_ext = ".temp";

// no magic numbers...and an obvious + 1 for null terminator
size_t len = strlen(output)+strlen(file_ext)+1;

char *tarout = new char[len];

memset(tarout, 0, len);

strcpy(tarout, output);
strcat(tarout, file_ext);

// If you feel memset is wasteful, you can use
*(tarout+len-1) = 0;

...
于 2011-02-25T03:52:21.817 回答