Argc не работает для моей программы C

Я получаю Core Dumped, когда у меня 3 аргумента. Пожалуйста помоги!

Я пишу программу для шифрования слов. Дело в том, что программа работает нормально, но когда я добавлю 2/3 аргумента вместо 4, я получу дамп памяти. Пожалуйста, помогите мне. Ниже я включил код. Выше (в первый раз, используя эту платформу, так что idk, если она действительно выше) - это изображение ошибки. Спасибо за помощь!

Это мой код:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <crypt.h>
#include <time.h>

int DisplayHelp(){ 
    printf("Usage :./task1 <wordlist> <min> <max>\n");
    printf("\t<wordlist> : A file path/name in which contains the password dictionary \n");
    printf("\t<min> : An integer value greater than 1.\n");
    printf("\t\tThis value represents the minimum length of the password\n");
    printf("\t<max> : An integer value greater than or equal to <min>.\n");
    printf("\t\t<max> represents the maximum length of the password.\n");
    exit(1);
}

int main(int argc, char * argv[] ){ 
    char * type1="$1$";
    char * type6="$6$";
    char * salt="$";
    char * mdresult;
    char encyption_scheme[20];
    FILE * fp;
    FILE * fp1;
    char input1 [50];
    int length; 
    int line=0;
    int line2=0;
    int Min=atoi(argv[2]);
    int Max=atoi(argv[3]);

        if(Min>Max || argc!=4){
            DisplayHelp();
        }

            fp = fopen(argv[1],"r"); //Reading of file

            if(fp == NULL){
                printf("Fatal error! %s file not found\n",argv[1]);
                printf("Program halted. Please verify the file path and try again.\n");
                exit(1);
            }
            fclose(fp);

            time_t current_time = time(NULL); 
            struct tm *tm = localtime(&current_time);

            printf("Program Started At %s\n", asctime(tm));

                fp=fopen(argv[1],"r");
            while(fgets(input1,50,fp)){
                //line++; //Line +1
                length=strlen(input1)-1;
                input1[strlen(input1)-1]='\0';


                if(length >= Min && length <= Max){ 
                line++;
                strcpy(encyption_scheme,type1); 
                strcat(encyption_scheme,salt);
                mdresult = crypt(input1,encyption_scheme);
                line2++;

                strcpy(encyption_scheme,type6); 
                strcat(encyption_scheme,salt);
                sharesult = crypt(input1,encyption_scheme);
                line2++;

                fp1=fopen("Filename.txt","a");
                if (fp1==NULL)
                    exit(-1);
                fprintf(fp1, "%s:%s\n", input1, mdresult);
                fprintf(fp1, "%s:%s\n", input1, sharesult);
                fclose(fp1);
                }

            }

            printf("Total number of words processed     => %d\n", line);
            printf("Total number of generated entries   => %d\n", line2);

            fclose(fp);

            current_time = time(NULL);
            tm = localtime(&current_time);
            printf("\n");
            printf("Program Ended At %s\n", asctime(tm)); //Add time

        }

1 ответ

Решение

Ты использовал argv[2] а также argv[3] перед проверкой, если они вообще существовали. Изменить:

int Min=atoi(argv[2]);
int Max=atoi(argv[3]);

if(Min>Max || argc!=4){
    DisplayHelp();
}

что-то вроде:

int Min, Max;

if (argc != 4) DisplayHelp();

Min = atoi(argv[2]);
Max = atoi(argv[3]);

if (Min > Max) DisplayHelp();

так что вы не получите доступ к элементам argv прежде чем вы убедитесь, что они существуют.

Другие вопросы по тегам