Add another missing bounds check in the SSH-1 private key loader.
[sgt/putty] / misc.h
diff --git a/misc.h b/misc.h
index 49942aa..2ca2d8e 100644 (file)
--- a/misc.h
+++ b/misc.h
@@ -28,6 +28,7 @@ char *dupstr(const char *s);
 char *dupcat(const char *s1, ...);
 char *dupprintf(const char *fmt, ...);
 char *dupvprintf(const char *fmt, va_list ap);
+void burnstr(char *string);
 
 char *fgetline(FILE *fp);
 
@@ -49,6 +50,8 @@ void bufchain_fetch(bufchain *ch, void *data, int len);
 
 struct tm ltime(void);
 
+void smemclr(void *b, size_t len);
+
 /*
  * Debugging functions.
  *