Skip to content

Commit fc38a5d

Browse files
authored
Merge pull request #69636 from al45tair/eng/PR-117900760-5.9
[Backtracing][Linux] Handle inaccessible memory properly in Docker.
2 parents 70b1f01 + 9207697 commit fc38a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/runtime/CrashHandlerLinux.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ memserver_read(void *to, const void *from, size_t len) {
668668
memcpy(to, from, len);
669669
return len;
670670
} else {
671-
return 1;
671+
return -1;
672672
}
673673
}
674674
}

0 commit comments

Comments
 (0)