mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-14 01:35:46 -04:00
Cheevos: Don't choke on long passwords
This commit is contained in:
@ -166,8 +166,8 @@ int rc_url_get_badge_image(char* buffer, size_t size, const char* badge_name) {
|
||||
}
|
||||
|
||||
int rc_url_login_with_password(char* buffer, size_t size, const char* user_name, const char* password) {
|
||||
char urle_user_name[64];
|
||||
char urle_password[64];
|
||||
char urle_user_name[256];
|
||||
char urle_password[256];
|
||||
int written;
|
||||
|
||||
if (rc_url_encode(urle_user_name, sizeof(urle_user_name), user_name) != 0) {
|
||||
|
Reference in New Issue
Block a user