The MPV function MpvStrToMBCS in the v 2.0 release uses
"const" incorrectly. The function declaration
currently reads
size_t MpvStrToMBCS(const char *mbstr, MpvChar *wcstr,
size_t count)
But in this function "mbstr" is the *destination*
buffer, not the source buffer. The function
declaration should instead read
size_t MpvStrToMBCS(char *mbstr, const MpvChar *wcstr,
size_t count)
--Steven Cole
Andy Davidson
None
None
Public
|
Date: 2005-03-18 02:14 Logged In: YES |
| Field | Old Value | Date | By |
|---|---|---|---|
| status_id | Open | 2005-03-18 02:07 | adavidso |
| close_date | - | 2005-03-18 02:07 | adavidso |
| resolution_id | None | 2005-03-18 02:04 | adavidso |
| assigned_to | nobody | 2005-03-18 02:04 | adavidso |