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

StringUtils.delete goes into eternal loop [SPR-5227] #9901

Closed
spring-projects-issues opened this issue Oct 21, 2008 · 1 comment
Closed

StringUtils.delete goes into eternal loop [SPR-5227] #9901

spring-projects-issues opened this issue Oct 21, 2008 · 1 comment
Assignees
Labels
in: core Issues in core modules (aop, beans, core, context, expression) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

Mattias Hellborg Arthursson opened SPR-5227 and commented

Passing an empty String to StringUtils.delete causes an eternal loop. Sending an empty String as input doesn't really make sense, but there is a possibility it might happen accidentally (hey - it happened to me :))

Test case verifying the bug:
@Test
public void verfiyDeleteWithEmptyStringWillCauseEternalLoop(){
String result = StringUtils.delete("Some string", "");
// We never get here - stuck in eternal loop above.
assertEquals("Some string", result);
}


Affects: 2.0.8, 2.5.5

Backported to: 2.0.9

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

Thanks for spotting this! Even if an empty pattern doesn't make much sense, we shouldn't kill the CPU in that case :-)

Juergen

@spring-projects-issues spring-projects-issues added type: bug A general bug status: backported An issue that has been backported to maintenance branches in: core Issues in core modules (aop, beans, core, context, expression) labels Jan 11, 2019
@spring-projects-issues spring-projects-issues added this to the 2.5.6 milestone Jan 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: core Issues in core modules (aop, beans, core, context, expression) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Projects
None yet
Development

No branches or pull requests

2 participants