1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

UNICODE byte ordering issue: typecast to uint16* replaced with SSVAL()

This commit is contained in:
Luke Leighton
-
parent 9ab81caa06
commit 9084b7e33d
8 changed files with 21 additions and 21 deletions

View File

@ -329,7 +329,7 @@ creates a UNISTR structure.
void make_unistr(UNISTR *str, char *buf)
{
/* store the string (null-terminated copy) */
struni2(str->buffer, buf);
struni2((char *)(str->buffer), buf);
}
/*******************************************************************
@ -372,7 +372,7 @@ void make_buffer3_str(BUFFER3 *str, char *buf, int len)
str->buf_len = len * 2;
/* store the string (null-terminated 8 bit chars into 16 bit chars) */
struni2((uint16*)str->buffer, buf);
struni2(str->buffer, buf);
}
/*******************************************************************
@ -573,7 +573,7 @@ void make_unistr2(UNISTR2 *str, char *buf, int len)
str->uni_str_len = len;
/* store the string (null-terminated 8 bit chars into 16 bit chars) */
struni2(str->buffer, buf);
struni2((char *)(str->buffer), buf);
}
/*******************************************************************