diff options
| author | 2010-08-22 09:21:36 +0000 | |
|---|---|---|
| committer | 2010-08-22 09:21:36 +0000 | |
| commit | d65f35231973c60840c8bd5c8ee72db650286b24 (patch) | |
| tree | 6ce21d3f9dc34819ae706507f78a0038caee2f16 /usr.sbin/nsd/buffer.c | |
| parent | mirror new flags to vis(3): -a to encode all characters, -h to use (diff) | |
| download | wireguard-openbsd-d65f35231973c60840c8bd5c8ee72db650286b24.tar.xz wireguard-openbsd-d65f35231973c60840c8bd5c8ee72db650286b24.zip | |
NSD v3.2.6
Diffstat (limited to 'usr.sbin/nsd/buffer.c')
| -rw-r--r-- | usr.sbin/nsd/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/nsd/buffer.c b/usr.sbin/nsd/buffer.c index 67b11183309..e0f9859a24e 100644 --- a/usr.sbin/nsd/buffer.c +++ b/usr.sbin/nsd/buffer.c @@ -28,7 +28,7 @@ buffer_create(region_type *region, size_t capacity) = (buffer_type *) region_alloc(region, sizeof(buffer_type)); if (!buffer) return NULL; - + buffer->_data = (uint8_t *) xalloc(capacity); buffer->_position = 0; buffer->_limit = buffer->_capacity = capacity; |
