我有以下代码:
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#define RCVBUFSIZE 1024
void insertarOperacion(char *op){
char operacion[RCVBUFSIZE], *retrString = "RETR "; //<
bool operacionError = false;
printf("Para solicitar un fichero escriba get <nombreFechero>, para salir escriba quit\n");
do{
if(operacionError)
printf("Opcion invalida\n");
printf("Operacion: ");
fgets(operacion, sizeof(operacion), stdin);
operacion[strlen(operacion) - 1] = '\0';
operacionError = true; printf("000000000\n");
} while( ((strcmp(operacion, "quit") == 0) + (strncmp(operacion, "get", 3) == 0)) != 1);
printf("111111111\n");
if (strcmp(operacion, "quit") == 0){
strcpy(operacion, "QUIT\r\n");
operacion[strlen(operacion) - 1] = '\0';
strcpy(op, operacion);
}
else if(strncmp(operacion, "get",3) == 0){printf("DALEEEKLAJDSFK");
strcat(retrString, operacion + 4);printf("33333333333\n");
strcat(retrString, "\r\n"); //>
retrString[strlen(retrString) - 1] = '\0';
printf("333333333334\n");
strcpy(op, retrString);
printf("333333333335\n");
} printf("PORFI?");
// send(clientSock, retrString, RCVBUFSIZE, 0);
}
int main(){
//int i = 10, j=20;
char jiji[RCVBUFSIZE] = "lkajsdfkjdsf";
insertarOperacion(jiji);
printf("%s\n\n", jiji);
insertarOperacion(jiji);
printf("%s", jiji);
return 0;
}
问题是“退出”部分完美运作。 “获取”部分不起作用。如果我输入例如:“get rekt.txt”。我得到了以下输出:
000000000
111111111
分段错误(核心转储)
答案 0 :(得分:2)
此:
char *retrString = "RETR ";
是字符串文字,这意味着此指针指向的内存是只读的,因此无法修改/写入。
当您尝试修改字符串文字时,“get”部分完全违反上述内容:
strcat(retrString, operacion + 4);
strcat(retrString, "\r\n"); //>
retrString[strlen(retrString) - 1] = '\0';
这会导致分段错误。
为了解决这个问题,只需声明char指针,然后为它分配空间,填充它然后随意修改它。
示例:
char* retrString = NULL;
retString = malloc(sizeof("RETR ") * sizeof(char) + 1); // +1 for the null terminator
strcpy(retrString, "RETR ");
// do your get thing then
strcat(retrString, operacion + 4);
strcat(retrString, "\r\n"); //>
retrString[strlen(retrString) - 1] = '\0';