target != NULL or name->buffer != NULL.
+1206. [bug] dns_name_downcase() enforce requirement that
+ target != NULL or name->buffer != NULL.
+
1205. [func] lwres: probe the system to see what address families
are currently in use.
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: name.c,v 1.133 2002/03/14 00:36:06 bwelling Exp $ */
+/* $Id: name.c,v 1.134 2002/05/28 03:39:46 marka Exp $ */
#include <config.h>
ndata = source->ndata;
} else {
REQUIRE(BINDABLE(name));
- if (target == NULL && name->buffer != NULL) {
+ REQUIRE(target != NULL || name->buffer != NULL);
+ if (target == NULL) {
target = name->buffer;
isc_buffer_clear(name->buffer);
}