Code

Add fixme comment re testing for file existence inside g_return_if_fail.
authorpjrm <pjrm@users.sourceforge.net>
Wed, 20 Jun 2007 22:12:10 +0000 (22:12 +0000)
committerpjrm <pjrm@users.sourceforge.net>
Wed, 20 Jun 2007 22:12:10 +0000 (22:12 +0000)
src/xml/repr-io.cpp

index c1d764a8b38ae9818dd5622c0cc1b30fab6da917..8369fb80345180269767f416d78af9948822fca2 100644 (file)
@@ -244,6 +244,9 @@ sp_repr_read_file (const gchar * filename, const gchar *default_ns)
 
     g_return_val_if_fail (filename != NULL, NULL);
     g_return_val_if_fail (Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS ), NULL);
+    /* fixme: A file can disappear at any time, including between now and when we actually try to
+     * open it.  Get rid of the above test once we're sure that we correctly handle
+     * non-existence. */
 
     // TODO: bulia, please look over
     gsize bytesRead = 0;