mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[PR #236] [MERGED] Fix: Increase Stack size #368
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/bootandy/dust/pull/236
Author: @bootandy
Created: 8/15/2022
Status: ✅ Merged
Merged: 8/15/2022
Merged by: @bootandy
Base:
master← Head:stack_size📝 Commits (1)
b18b117Fix: Increase Stack size📊 Changes
1 file changed (+5 additions, -0 deletions)
View changed files
📝
src/main.rs(+5 -0)📄 Description
Low stack size could result in a stack overflow exception if traversing
very highly nested directories.
This increases stack size, it makes stack overflows less likely to happen but no guarantees.
example for creating directories:
mkdir -p $(for i in {1..5000}; do echo -n "qwe/"; done)
original issue:
https://github.com/bootandy/dust/issues/197
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.