Update of /cvsroot/audacity/audacity-src/src/commands
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv5547/commands

Modified Files:
        CommandManager.cpp 
Log Message:
Port security vulnerability fixes, per NGS report, from custom UmixIt version.

Index: CommandManager.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/commands/CommandManager.cpp,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- CommandManager.cpp  10 Nov 2006 06:11:40 -0000      1.38
+++ CommandManager.cpp  25 Jan 2007 03:01:11 -0000      1.39
@@ -833,9 +833,9 @@
          if (!value)
             break;
          
-         if (!wxStrcmp(attr, wxT("name")))
+         if (!wxStrcmp(attr, wxT("name")) && 
XMLValueChecker::IsGoodString(value))
             name = value;
-         if (!wxStrcmp(attr, wxT("key")))
+         if (!wxStrcmp(attr, wxT("key")) && 
XMLValueChecker::IsGoodString(value))
             key = value;
       }
 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Audacity-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to