Merge "system/vold: cleanup compiler warnings (read of uninitialized memory)."

gugelfrei
Treehugger Robot 8 years ago committed by Gerrit Code Review
commit cda5cec39f

@ -20,7 +20,7 @@
#include <string.h> #include <string.h>
bool parse_scrypt_parameters(const char* paramstr, int *Nf, int *rf, int *pf) { bool parse_scrypt_parameters(const char* paramstr, int *Nf, int *rf, int *pf) {
int params[3]; int params[3] = {};
char *token; char *token;
char *saveptr; char *saveptr;
int i; int i;

Loading…
Cancel
Save