We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
furi_delay_ms(5000); // run log Storage* storage = furi_record_open(RECORD_STORAGE); for(uint32_t i = 0; i < 1024; i++) { Stream* file_stream = buffered_file_stream_alloc(storage); buffered_file_stream_close(file_stream); free(file_stream); FURI_LOG_E("Bench", "Running %lu, still fine...", i); // will crash after ~100 runs } furi_record_close(RECORD_STORAGE);
The text was updated successfully, but these errors were encountered:
Possibly missing stream_free instead of regular free.
stream_free
free
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: