Age | Commit message (Collapse) | Author |
|
This is needed at least on FreeBSD
|
|
|
|
Everything clang and GCC warn about, except GCC's missing-field-initializers
which are just stupid as they don't allow {} syntax to zero a field.
|
|
|
|
uninitialized" warning
|
|
|
|
handling
|
|
This enforces explicit casting and thus avoids alignment problems.
|
|
|
|
Just for the sake of completeness.
|
|
readdir_r can be unsafe for very long filenames.
|
|
|
|
|
|
|
|
Unaligned access might be a problem on some architectures, so it's better to
copy it to an aligned buffer before further handling the handshake.
|
|
|
|
The NaCl implementation has a code size of more than 10KiB.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The buffer descriptor is a local variable and no buffer data is changed, so
there is nothing to restore before returning
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|