X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=hivex%2Fhivexsh.c;h=51d8cfb159eb4a6a629dc87bc60117239287062f;hb=0d4bc93c737455d75dacab78cb9d65f47c500add;hp=9c54536afcc742bdcf162949a2aedde0d6d3baf3;hpb=3a06848a71f18106fd79f8c73b490eca82d54dfe;p=libguestfs.git diff --git a/hivex/hivexsh.c b/hivex/hivexsh.c index 9c54536..51d8cfb 100644 --- a/hivex/hivexsh.c +++ b/hivex/hivexsh.c @@ -58,6 +58,8 @@ #include "hivex.h" #include "byte_conversions.h" +#define HIVEX_MAX_VALUES 1000 + static int quit = 0; static int is_tty; static hive_h *h = NULL; @@ -840,7 +842,7 @@ cmd_setval (char *nrvals_str) "setval", "nrvals", "xstrtol", xerr); return -1; } - if (nrvals < 0 || nrvals > 1000) { + if (nrvals < 0 || nrvals > HIVEX_MAX_VALUES) { fprintf (stderr, _("%s: %s: integer out of range\n"), "setval", "nrvals"); return -1; @@ -858,7 +860,6 @@ cmd_setval (char *nrvals_str) /* Read nrvals * 2 lines of input, nrvals * (key, value) pairs, as * explained in the man page. */ - int prompt = isatty (0) ? 2 : 0; int i, j; for (i = 0; i < nrvals; ++i) { /* Read key. */ @@ -912,7 +913,7 @@ cmd_setval (char *nrvals_str) } else if (STRPREFIX (buf, "expandstring:")) { buf += 13; - values[i].t = hive_t_string; + values[i].t = hive_t_expand_string; int nr_chars = strlen (buf); values[i].len = 2 * (nr_chars + 1); values[i].value = malloc (values[i].len);