show/hide this revision's text 2 added 172 characters in body

You forgot to specify the open mode ('w') in fdopen(). The default is 'r', causing the write() call to fail.

I think mkstemp() creates the file for reading only. Calling fdopen with 'w' probably reopens it for writing (you can reopen the file created by mkstemp).

show/hide this revision's text 1

You forgot to specify the open mode ('w') in fdopen(). The default is 'r', causing the write() call to fail.