Skip to content

Commit bac71e8

Browse files
committed
Fix stack allocation test
1 parent 548ceb7 commit bac71e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/FileUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ void startFSIOThreads() {
527527
continue;
528528
}
529529
threadData->stack = (uint8_t *) memalign(0x20, stackSize);
530-
if (!threadData->thread) {
530+
if (!threadData->stack) {
531531
free(threadData->thread);
532532
DEBUG_FUNCTION_LINE_ERR("Failed to allocate threadData stack");
533533
OSFatal("ContentRedirectionModule: Failed to allocate IO Thread stack");

0 commit comments

Comments
 (0)