diff --git a/Password Manager/ConfigFileManager.cs b/Password Manager/ConfigFileManager.cs index 1726463..69be319 100644 --- a/Password Manager/ConfigFileManager.cs +++ b/Password Manager/ConfigFileManager.cs @@ -23,9 +23,9 @@ namespace Password_Manager try { StreamReader sr = new StreamReader(CONFIGPATH); + string? path = null, recipient = null; if (sr != null) { - string? path, recipient; while (!sr.EndOfStream) { string[]? fields = sr.ReadLine().Split(DELIMETER);