奇妙な行動に出くわしました。デバッグ中、while
最初に -loop がループしたとき:コードの一部を通過した後/* "data-url" */
、/* "data-author" */
次の結果が得られDebugging windows -> Watches
ます:
(Code::Blocks IDE、Ubuntu 13.04 を使用しています)
の長さdataUrl_tempString
は8バイト、 の長さdataAuthor_tempString
は11バイト、 の長さdataName_tempString
は9バイトです...
しかし/* data-name */
、コードの一部を実行した後、混乱する結果が得られました。
現在、サイズは 8、11、および 9 バイトではありません。
何か問題でもありますか?
そのような行動の理由を見つけるのを手伝ってくれませんか?
その関数のコードは次のとおりです。
int SubString_Search(char *fnameNew, char *strUrl, char *strAuthor, char *strName) {
FILE *fp;
FILE *ofp_erase;
FILE *ofp;
char ch_buf;
int count = 0;
char dataUrl[8] = "";
char dataAuthor[11] = "";
char dataName[9] = "";
char *dataUrl_tempString = &dataUrl[0];
char *dataAuthor_tempString = &dataAuthor[0];
char *dataName_tempString = &dataName[0];
if( (fp = fopen("output_temp.txt", "r")) == NULL) {
printf("File could not be opened.\n");
return (-1);
}
else {
/* Erasing 'NEW' file if exists */
ofp_erase = fopen(fnameNew, "w");
fclose(ofp_erase);
}
ofp = fopen(fnameNew, "a");
rewind(fp);
while(!feof(fp)) {
/* "data-url" */
fread(dataUrl_tempString, 8, sizeof(char), fp);
if(memcmp(dataUrl_tempString, strUrl) == 0) {
fseek(fp, 2, SEEK_CUR); // going up to required place to copy a string
while( (ch_buf = getc(fp)) != '"') {
fputc(ch_buf, ofp);
}
fputc('\n', ofp);
}
fseek(fp, -8, SEEK_CUR);
/* "data-author" */
fread(dataAuthor_tempString, 11, sizeof(char), fp);
if(memcmp(dataAuthor_tempString, strAuthor) == 0) {
fseek(fp, 2, SEEK_CUR); // going up to required place to copy a string
while( (ch_buf = getc(fp)) != '"') {
fputc(ch_buf, ofp);
}
fputc(' ', ofp);
fputc('-', ofp);
fputc(' ', ofp);
}
fseek(fp, -11, SEEK_CUR);
/* "data-name" */
fread(dataName_tempString, 9, sizeof(char), fp);
if(memcmp(dataName_tempString, strName) == 0) {
fseek(fp, 2, SEEK_CUR); // going up to required place to copy a string
while( (ch_buf = getc(fp)) != '"') {
fputc(ch_buf, ofp);
}
//fputc() not needed
}
fseek(fp, -8, SEEK_CUR); // jumping over 1 symbol from the beginning: `-8` instead of `-9`...
count++;
if(count == 5)
break;
}
rewind(fp);
fclose(fp);
fclose(ofp);
return 0;
}