From 1af7e008376bae5d06a18f05a57d5b90d8c32511 Mon Sep 17 00:00:00 2001 From: cg Date: Sun, 7 Sep 2003 16:28:03 +0000 Subject: update my email address. --- sys/dev/sound/pcm/buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/sound/pcm/buffer.c') diff --git a/sys/dev/sound/pcm/buffer.c b/sys/dev/sound/pcm/buffer.c index 30e0996..30970ab 100644 --- a/sys/dev/sound/pcm/buffer.c +++ b/sys/dev/sound/pcm/buffer.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999 Cameron Grant + * Copyright (c) 1999 Cameron Grant * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -129,7 +129,7 @@ sndbuf_resize(struct snd_dbuf *b, unsigned int blkcnt, unsigned int blksz) b->bufsize = blkcnt * blksz; tmpbuf = malloc(b->bufsize, M_DEVBUF, M_NOWAIT); - if (tmpbuf == NULL) + if (tmpbuf == NULL) return ENOMEM; free(b->tmpbuf, M_DEVBUF); b->tmpbuf = tmpbuf; -- cgit v1.1