1. ホーム
  2. c

[解決済み] scanfを使用したセグメンテーションフォールト [重複]。

2022-01-29 10:58:02

質問

質問です。 簡単なメニューインターフェイスを書こうとしているのですが、segmentation faultエラーが何度も発生し、原因がわかりません。

#include <stdlib.h>
#include <stdio.h>
int flush(); int add(char *name, char *password, char *type); int delete(char *name);
int edit(char *name, char *password, char *type, char *newName, char *newPassword, char            *newType);
int verify(char *name, char *password);



int menu(){
    int input;
    char *name, *password, *type, *newName, *newPassword, *newType;
    printf("MAIN MENU \n ============\n");
    printf("1. ADD\n");
    printf("2. DELETE\n");
    printf("3. EDIT\n");
    printf("4. VERIFY\n");
    printf("5. Exit\n");
    printf("Selection:");
    scanf("%d", &input);
    flush();
    switch (input){

    case 1:
        printf("%s\n", "Enter Name:");
        scanf("%s", name);
        flush();
        printf("%s\n", "enter password" );
        scanf("%s", password);
        flush();
        printf("%s\n","enter type" );
        scanf("%s",type);
        add(name, password, type);
        menu();
        break;
    case 2:
        printf("Enter Name:" );
        scanf("%s",name);
        flush();
        delete(name);
        menu();
        break;
    case 3:
        printf("Enter Name:\n");
        scanf("%s",name);
        flush();
        printf("Enter Password\n");
        scanf("%s", password);
        flush();            
        printf("enter type:\n");
        scanf("%s", type);
        flush();
        printf("enter your new username:\n");
        scanf("%s",newName);
        flush();
        printf("enter your new password\n");
        scanf("%s", newPassword);
        flush();
        printf("enter your new type\n");
        scanf("%s",newType);
        flush();
        edit(name, password, type, newName, newPassword, newType);
        menu();
        break;
    case 4:
        printf("Enter Name\n");
        scanf("%s",name);
        flush();
        printf("Enter Password\n");
        scanf("%s",password);
        flush();
        verify(name, password);
        menu();
        break;
    case 5:
        return 0;
    default:
        printf("invalid input, please select from the following:\n");
        menu();
}
    return 0;
    }

    int flush(){
     int ch;
     while ((ch = getchar()) != EOF && ch != '\n') ;
     return 0;
    }

どのメニューでも、2つのフィールドを入力すると、セグメンテーションフォールトが発生します。

解決方法を教えてください。

ポインターを初期化する必要があります。 または、スタックアロケートされた配列を使用します。

例えば char *name を実行します。 char name[20] . (この場合、入力は19文字に制限されることに注意してください。必要であれば、より大きなバッファを使用してください)。

今現在、あなたは初期化されていないポインタを scanf() これは、事実上 scanf() に書き込むことになります。 未定義 の領域があります。 ある実行で成功しても、次の実行で失敗するかもしれない。 プロセスのアドレス空間内の他の場所のメモリを破壊するかもしれません。

初期化されていない変数を使用しないでください。また、コンパイラの警告をできるだけ大きくすることを検討してください。