index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libutil
/
imsg.c
Age
Commit message (
Expand
)
Author
2022-01-28
Only memcpy() into imsg->data if datalen is not 0. Passing a NULL pointer
Claudio Jeker
2017-12-14
Make a few internal symbols static and add a Symbols.map version script
Mark Kettenis
2017-04-11
Use freezero(3) for the imsg framework in imsg_free(3) and ibuf_free(3).
Reyk Floeter
2017-03-24
Use C99 types (uint32_t) instead of BSD (u_int32_t) - the former are
Nicholas Marriott
2015-12-09
Add a cast to silence a compiler warning by clang on FreeBSD.
tb
2015-12-05
Do not loop on EAGAIN in imsg_read(). Better to return the error to the
Claudio Jeker
2015-11-27
Remove three NULL-checks before free(). ok millert@
mmcc
2015-07-19
Handle malloc(0) returning NULL (which can happen on some other
Nicholas Marriott
2015-07-12
Use memset instead of bzero for better portability.
Nicholas Marriott
2015-07-03
bzero cmsgbuf before using it, silences valgrind warnings.
Bryan Steele
2015-06-11
The correct semantic is to check msgbuf_write() for <= 0, not just < 0.
Reyk Floeter
2014-06-30
sys/types.h rather than sys/param.h, where applicable. avoid overreach.
Theo de Raadt
2013-12-26
constify data parameter in imsg_add() and imsg_compose()
Eric Faurot
2013-02-01
fix memleak in imsg_read() when hitting the fd reserve check
Gilles Chehade
2012-12-19
Fix a purely theoretical NULL-pointer dereference in the case that we
Reyk Floeter
2012-06-02
in imsg_read() avoid calling recvmsg() if we detect that we will be short
Gilles Chehade
2010-05-26
Move imsg into libutil and add a man page.
Nicholas Marriott