int8_t** FileToColorMap(char* colorfile, int* colorcount)
{
FILE* fp = fopen (colorfile, "r");
if (fp==NULL)
{
printf("no such file.");
return 0;
}
int r,g,b;
fscanf(fp, "%d", colorcount);
uint8_t* output;
output = (uint8_t *)malloc(*colorcount * sizeof(uint8_t));
for (int i = 0; i < *colorcount;i++) {
if( fscanf(fp, "%d %d %d", &r, &g, &b) != EOF ) {
// int* arr= (int *)malloc(3 * sizeof(int));
// arr[0] = r;
// arr[1] = g;
// arr[2] = b;
int arr[3] = {r,g,b};
output[i] = *arr;
} else
{
freeMap(i+1, &output);
return NULL;
}
}
fclose(fp);
return *output;
}
This causes seg fault error, or error 1 or something even when I try return output, **output, &ouput.
It looks like your post is mostly code; please add some more details.
There are many issues:
You need to declare pointer to pointer here and allocate space for the pointers not uint8_t
Wrong types of both arrays.
arr
is automatic variable and dereferencing it outside the function scope is an UBalways check the result if malloc. I do not for the clarity sake