mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-28 22:15:49 -04:00
fix comparison error
This commit is contained in:
@@ -168,7 +168,7 @@ namespace soe
|
||||
return bytes;
|
||||
}
|
||||
|
||||
bool Base64::UUDecode(const char *source, unsigned sourceLen, unsigned char *dest, unsigned *destLen)
|
||||
bool Base64::UUDecode(const char *source, unsigned sourceLen, unsigned char *dest, int *destLen)
|
||||
{
|
||||
unsigned char q[3];
|
||||
unsigned index;
|
||||
|
||||
@@ -13,7 +13,7 @@ namespace soe
|
||||
static bool UUEncode(const unsigned char *source, unsigned sourceLen, std::string &destString);
|
||||
static bool UUEncode(const std::vector<unsigned char> &source, char *dest, unsigned destLen);
|
||||
static bool UUEncode(const std::vector<unsigned char> &source, std::string &destString);
|
||||
static bool UUDecode(const char *source, unsigned sourceLen, unsigned char *dest, unsigned *destLen);
|
||||
static bool UUDecode(const char *source, unsigned sourceLen, unsigned char *dest, int *destLen);
|
||||
static bool UUDecode(const char *source, unsigned sourceLen, std::vector<unsigned char> &destVector);
|
||||
static bool UUDecode(const char *source, unsigned sourceLen, std::string &destString);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user