]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Fix 'Duplicate Session' on Windows, broken during the config revamp.
authorSimon Tatham <anakin@pobox.com>
Wed, 20 Jul 2011 15:55:07 +0000 (15:55 +0000)
committerSimon Tatham <anakin@pobox.com>
Wed, 20 Jul 2011 15:55:07 +0000 (15:55 +0000)
(In an embarrassingly silly way, too. No end of difficult stuff about
Conf serialisation done with great care and working just fine, and
then a trivial goof in using sscanf lets the whole lot down.)

[originally from svn r9237]

windows/window.c

index b71f0bb0c2b67a2f21989a5a9b4cfa1555d53340..d558cc9504201a61353a44cb3b352989ac67362c 100644 (file)
@@ -445,7 +445,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
            HANDLE filemap;
            void *cp;
            unsigned cpsize;
-           if (sscanf(p + 1, "%p:%u", &filemap, &cpsize) == 1 &&
+           if (sscanf(p + 1, "%p:%u", &filemap, &cpsize) == 2 &&
                (cp = MapViewOfFile(filemap, FILE_MAP_READ,
                                    0, 0, cpsize)) != NULL) {
                conf_deserialise(conf, cp, cpsize);