Age | Commit message (Expand) | Author |
2014-11-14 | _NSIG is the number of valid signals including signal 0, so it's not a valid | Jonathan Matthew |
2014-11-14 | let this compile with clang; no binary change with gcc. | Daniel Dickman |
2014-11-14 | Add sched_yield(2) manpage | Philip Guenther |
2014-11-11 | Merge from NetBSD from 1999-03-25:" | Philip Guenther |
2014-11-09 | Correct constness of str*unvis()'s second (source) argument | Philip Guenther |
2014-11-05 | missing pfd = newp, diagnosed by deraadt@ | Stuart Henderson |
2014-11-05 | edns0 is not currently supported: confirmed by sthen and eric | Jason McIntyre |
2014-11-05 | zap double word; | Jason McIntyre |
2014-11-05 | Convert EXAMPLES to IDIOMS and make it a simple select -> poll | Todd C. Miller |
2014-11-04 | explicitly clarify that reading also stops after size-1 bytes | Ted Unangst |
2014-11-04 | Fix memory leak on reallocarray() failure introduced by conversion | Todd C. Miller |
2014-11-03 | POLLERR is only valid in revents so it is not a bug that it is | Todd C. Miller |
2014-11-02 | Fix a NULL deref when getting an actual result for an invalid hostname | Eric Faurot |
2014-10-31 | Use "const char tempchars[]" instead of "const char *tempchars". | Todd C. Miller |
2014-10-30 | clean up verbiage around the calculations; ok ingo jmc otto | Theo de Raadt |
2014-10-30 | Don't mention old systems where realloc(NULL, n) didn't work as we | Todd C. Miller |
2014-10-26 | The open flags param to mkostemps() should be "flags" not "oflags" | Todd C. Miller |
2014-10-26 | mknod(2) now supports creating FIFOs too. Fix description of device file | Philip Guenther |
2014-10-25 | Remove unnecessary netinet/in_systm.h include. | Lawrence Teo |
2014-10-23 | Save space in man page: err() -> errc() and combine vars. | Doug Hogan |
2014-10-22 | We prefer to use call reallocarray() with nmemb first and size second. | Todd C. Miller |
2014-10-22 | Use reallocarray() instead of calloc() (originally was realloc). | Todd C. Miller |
2014-10-22 | Avoid writing in second person in malloc.3 | Doug Hogan |
2014-10-20 | List extensions in the STANDARDS section, replacing some text below CAVEATS. | Ingo Schwarze |
2014-10-19 | make RETURN VALUES more concise | Ingo Schwarze |
2014-10-19 | Revamp malloc.3 by reordering the sections and rewriting parts. | Doug Hogan |
2014-10-19 | Revert last commit due to changed semantics found by make release. | Doug Hogan |
2014-10-18 | Better POSIX compliance in realpath(3). | Doug Hogan |
2014-10-18 | reallocarray() -- a little tricky to review | Theo de Raadt |
2014-10-17 | trivial sync of the first sentence of the DESCRIPTION | Ingo Schwarze |
2014-10-16 | Fix bounds check for newlen without relying on unspecified behavior. | Todd C. Miller |
2014-10-16 | Remove references to unimplemented CLOCK_VIRTUAL. It is non-standard | Todd C. Miller |
2014-10-13 | remove unused variable | Charles Longeau |
2014-10-11 | Since deraadt@ remembers seeing strdup() on one particular 4.2BSD machine, | Ingo Schwarze |
2014-10-11 | Userland reallocarray() audit. | Doug Hogan |
2014-10-11 | Userland reallocarray() audit. | Doug Hogan |
2014-10-11 | obvious reallocarray() use | Theo de Raadt |
2014-10-11 | use reallocarray, and avoid this << 1 ugliness. | Theo de Raadt |
2014-10-11 | Userland reallocarray() audit. | Doug Hogan |
2014-10-11 | Add UTC support to %Z conversion in strptime(). | Doug Hogan |
2014-10-10 | replace select with equiv poll usage. | David Gwynne |
2014-10-10 | Remove unnecessary includes now that we are no longer using select() | Todd C. Miller |
2014-10-09 | replace the use of select() for a short sleep with nanosleep(). | David Gwynne |
2014-10-09 | use reallocarray(NULL, a, b) instead of malloc(a, b), which gives us | Theo de Raadt |
2014-10-08 | obvious realloc -> reallocarray conversion | Theo de Raadt |
2014-10-08 | obvious reallocarray() | Theo de Raadt |
2014-10-08 | using reallocarray() gives us multiplicative integer overflow checking | Theo de Raadt |
2014-10-08 | obvious conversion of realloc() to reallocarray(). Luckily this is | Theo de Raadt |
2014-10-08 | obvious reallocarray(); ok doug | Theo de Raadt |
2014-10-08 | obvious malloc -> reallocarray, for mult int oflow | Theo de Raadt |