Age | Commit message (Collapse) | Author |
|
ttyB* minor numbers change; be sure to rerun MAKEDEV if you do not
upgrade with bsd.rd
Adapted from NetBSD by miod@
|
|
|
|
functions to pave way for more fine grained locking.
Suggested by, comments & OK mpi
|
|
Delete incorrect "unused" keyword and remove redundant variables due
to missing NULL checks.
From Helg Bredow.
|
|
fixes, no library bump needed.
OK deraadt@
|
|
Also it does not change behaviour.
OK jca
|
|
From Michael W. Bombardieri
|
|
trailing whitespace is no longer permitted when invoked from stdin.
From Scott Cheloha.
ok jca
|
|
From Raf Czlonka.
ok halex
|
|
Diff from Jan Stary, ok kettenis@
|
|
by the plaintext history diff, but the code that may have depended on
this was since removed from history.c. None of the code introduced
between the plaintext history commit and now depends on calloc(3).
This way we can again use malloc.conf(5)'s J option to recognize use
of uninitialized memory.
ok jca
|
|
will SIGABRT
Bug found by Scott Cheloha <scottcheloha at gmail.com>
OK deraadt@
|
|
pkg_add actually looks at the env variable, and it doesn't affect
other tools.
buglet noticed by Lari Rasku
|
|
|
|
ok jasper@
|
|
is present here because ctfconv(1) needs it.
Prevent an access violation since the file is mmap(2)'d without
write permission.
Triggered by jsg@ with afl(1).
|
|
|
|
the correct address space for direct referencing. Previous code has
worked because the address conversion has only set bits that are
already on.
|
|
OK jca, benno
jca also points out that Delan Azabani (delan _AT_ azabani.com) wrote
exactly the same diff in 2016. It was OK bluhm but apparently never
commited.
|
|
OK jca, benno
|
|
|
|
Also remove ruby 1.8, 2.1, and 2.2 information, as that support was
removed. Additionally, extconf CONFIGURE_STYLE support was removed,
so remove mention of that as well.
|
|
- define each font setup.
- package moveto/show as one command.
- extra shorthand when y doesn't change, reuse the current pos.
okay schwarze@
|
|
|
|
|
|
and reported by Alf Schlichting
|
|
NOTE: code still runs with single softnet task. change definition of
SOFTNET_TASKS in net/if.c, if you want to have more than one softnet task
OK mpi@, OK phessler@
|
|
ok deraadt@, mpi@
|
|
We don't link libc into shared-libraries by default to avoid binding libraries
to specific libc majors, so those options have always suffered false positives
for us, but with the move of functions from libpthread to libc the problem has
gotten even worse. A version-agnostic binding to libc would solve this better
but it's on back-order behind the pony I requested.
tweak and ok deraadt@
|
|
|
|
in binutils that results in uninitialized .dynsym entries in shared objects
in the samba port.
problem reported by naddy@
ok jca@ kettenis@
|
|
seem fine deraadt
|
|
NetBSD.
seem fine deraadt
|
|
missing but the type was used in cd9660_setup_boot().
seem fine deraadt
|
|
|
|
(extra thanks to Hrvoje for testing)
OK mpi@
|
|
|
|
|
|
|
|
fopen()'ing the the file with a mode of "a" (so watchers don't detect
changes until the file is re-written as part of interface
configuration) but using rewind() to start writing from the beginning
of the file.
Use ftruncate() and overwrite the date as intended, rather than
appending new data.
Problem reported and diffs tested by Mike via tech@. Thanks!
|
|
Prompted by and ok jmc@
|
|
|
|
ok stsp@
|
|
reporting an error in a scenario like the following:
1. mtx_enter(&tqa->tq_mtx);
2. IRQ
3. mtx_enter(&tqb->tq_mtx);
Found by Hrvoje Popovski, OK mpi@
|
|
Input and OK jmc@, OK mpi@
|
|
The ioctl(2) it defines is not supported since a long time and most of
its defines are already present in tcpdump(8).
ok jca@
|
|
from Jesper Wallin.
|
|
lost while applying the diff. This is means sanid could be passed
uninitialized to ca_x509_subjectaltname_cmp(), where ibuf_release()
could try to release a pointer which is essentially stack garbage.
While there I realized that the bzero() in the loop is essentially
fatal, since every mismatch leads to a silent leak of ibufs. Since
ca_x509_subjectaltname_cmp() releases and initializes the passed
iked_id, we can safely call it multiple times after initializing
sanid once before the loop.
ok markus@
|
|
|
|
from Carlos Cardenas, thanks
|