|
|
|
|
|
by userbinator
1315 days ago
|
|
Seems like the buffer for storing the password was changed to be dynamically allocated When I see things like this, the first question I have is why? A password isn't going to be long enough to require dynamic allocation, so just use a fixed-size buffer. 255 is already generous and a good round number. The best solutions are often also the simplest. |
|
I guess things are different in the Linux/PC software world.