Changes between Initial Version and Version 1 of Ticket #19, comment 44
- Timestamp:
- Jul 11, 2014, 10:32:30 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19, comment 44
initial v1 1 1 The ` Bad address` error comes from the plain LIBC `write` attempting to write to a file descriptor which is most likely the child end of the pipe created by the parent process. I'm trying to track down what this pipe is used for. 2 3 From what I see in LIBC code, EFAULT is usually returned when the input parameters are wrong. I can't see any code returning EFAULT that could be related to write except the `__libsocket_safe_copy` intended to make sockets work with high memory but it doesn't seem to be our case since recompiling git in low memory mode gives the same thing.