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

0 size allocation #27

Open
thovide opened this issue Nov 17, 2022 · 2 comments
Open

0 size allocation #27

thovide opened this issue Nov 17, 2022 · 2 comments

Comments

@thovide
Copy link

thovide commented Nov 17, 2022

Hello,

in cell.cpp or cell3d.cpp (depending on the version), the instruction in bold leads to a call to new int[0] for the first iteration...

void voronoicell_neighbor_3d::memory_setup() {
int i;
mne=new int*[current_vertex_order];
ne=new int*[current_vertices];
for(i=0;i<3;i++) mne[i]=new int[init_n_vertices*i];
mne[3]=new int[init_3_vertices3];
for(i=4;i<current_vertex_order;i++) mne[i]=new int[init_n_vertices
i];
}

@chr1shr
Copy link
Owner

chr1shr commented Nov 19, 2022

You're right, although I believe this is valid C++ and not a bug; see, for example, this Stack Overflow post.

Since there is an associated array called mep that is also allocated from i=0, it made sense to start the mne array from i=0 also. But it could likely be adjusted to i=1, since the zero entry should never get accessed.

@thovide
Copy link
Author

thovide commented Nov 28, 2022

Thanks for your answer. Actually, it is detected as a programming error by our automated quality checking tools. It's valid but bad 🙂.

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

No branches or pull requests

2 participants