Author: jochen Revision: 963609 Modified property: svn:log Modified: svn:log at Wed Jul 14 19:52:37 2010 ------------------------------------------------------------------------------ --- svn:log (original) +++ svn:log Wed Jul 14 19:52:37 2010 @@ -1,3 +1 @@ -Added a check for file names containing a NUL characters. Such file names are now triggering an InvalidFileNameException, due to a security problem. (A file name like "foo.exe\0.png" might lead to the untended creation of "foo.exe".) Suggested by Daniel Fabian, dfab...@google.com. - - +Added a check for file names containing a NULL characters. Such file names are now triggering an InvalidFileNameException since the file name cannot be used as provided to create the file since it will be truncated at the NULL character on most (all?) operating systems. E.g. a file name like test.foo0.bar would result in test.foo being created.