Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make lib_maps dynamic array #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

make lib_maps dynamic array #15

wants to merge 1 commit into from

Conversation

ghost
Copy link

@ghost ghost commented Jun 17, 2020

make lib_maps dynamic array

@@ -164,8 +164,15 @@ static void lib_maps_build(void)
continue;
}

lib_maps = (struct lib_map *)realloc(lib_maps, (lib_map_num + 1) * sizeof(struct lib_map));
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The cast (struct lib_map *) is necessary for C++ but not for C. I think it's bad in fact. Please delete it.

lib->name = strdup(strrchr(path, '/') + 1);

char *slash = strrchr(path, '/');
if (slash)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This check is not necessary because of line 163.

@ostosh ostosh mentioned this pull request Dec 4, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants