tbeu / matio

MATLAB MAT File I/O Library
https://matio.sourceforge.io
BSD 2-Clause "Simplified" License
334 stars 97 forks source link

Avoid using mktemp (considered harmful) #97

Closed timangus closed 5 years ago

timangus commented 5 years ago

At link time, GCC emits the following: warning: the use of 'mktemp' is dangerous, better use 'mkstemp'. This patch uses mkstemp intead, as recommended.

tbeu commented 5 years ago

This is a duplicate of #43.