#include <stdio.h>
#include <string.h>
#include <dirent.h>
#include <stdlib.h>
void listFilesRecursively(void *p);
struct data {
    char path[100];
};
int main(int argc, char* argv[])
{
    // Directory path to list files
    struct data *d= (struct data *)malloc(sizeof(struct data *));
    strcpy(d->path,argv[1]);
    listFilesRecursively(d);   //need to send a struct
    return 0;
}
void listFilesRecursively(void *p)
{
    struct data *d = (struct data *)p;
    char path[100];
    struct dirent *dp;
    DIR *dir = opendir(d->path);
    // Unable to open directory stream
    if (!dir)
        return;
    while ((dp = readdir(dir)) != NULL)
    {
        if (strcmp(dp->d_name, ".") != 0 && strcmp(dp->d_name, "..") != 0)
        {
            printf("%s\n", d->path);
            struct data *nd= (struct data *)malloc(sizeof(struct data *));
            // Construct new path from our base path
            strcpy(path, d->path);
            strcat(path, "/");
            strcat(path, dp->d_name);
            strcpy(nd->path,path);
            listFilesRecursively(nd);
        }
    }
    closedir(dir);
}
the idea is to list the files and subdirectories from a directory that I send as an argument. It works for few directories and then I get malloc(): corrupted top size Aborted (core dumped) I am probably blind and I dont see the issue, any suggestion? Thanks in advance!
 
     
    