* autoload.cc (std_dll_init): Move dll_path closer to its use. Use dll_path in

fatal error.  Set ret values under lock control.
* lib/minires.c (res_nsend): Fix compilation errors owing to pointer
signedness.
This commit is contained in:
Christopher Faylor
2010-09-24 19:53:18 +00:00
parent 7438a10a01
commit 8d07b1aa2b
3 changed files with 15 additions and 7 deletions

View File

@@ -441,8 +441,8 @@ int res_nsend( res_state statp, const unsigned char * MsgPtr,
if (statp->os_query) {
int len;
short int Class, Type;
unsigned char DomName[MAXDNAME];
unsigned char * ptr = MsgPtr + HFIXEDSZ;
char DomName[MAXDNAME];
unsigned char * ptr = (unsigned char *) MsgPtr + HFIXEDSZ;
len = dn_expand(MsgPtr, MsgPtr + MsgLength, ptr, DomName, sizeof(DomName));
if (len > 0) {
ptr += len;