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

Autoname seems to get stuck in a loop and consume all the memory on the system #4509

Open
QuantamHD opened this issue Jul 25, 2024 · 0 comments
Labels
pending-verification This issue is pending verification and/or reproduction

Comments

@QuantamHD
Copy link
Contributor

Version

5579685

On which OS did this happen?

Linux

Reproduction Steps

I've been having a hard time reducing a test case, the test case crashes my remote desktop connection.

Reviewing the code a bit suggests that maybe this line is responsible

			int count = 0, iter = 0;
			while (1) {
				iter++;
				int n = autoname_worker(module, wire_score);
				if (!n) break;
				count += n;
			}

Expected Behavior

Not get stuck in a loop

Actual Behavior

Autoname gets stuck in a loop.

@QuantamHD QuantamHD added the pending-verification This issue is pending verification and/or reproduction label Jul 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pending-verification This issue is pending verification and/or reproduction
Projects
None yet
Development

No branches or pull requests

1 participant