Added debugging info to mifconv.exe 'Bug 1414 - mifconv system() call to svgtbinencode seems to have a timing issue with Raptor 2.9.2+', which seems to alleviate the symptoms... PDK_3.0.g
authorWilliam Roberts <williamr@symbian.org>
Mon, 08 Feb 2010 17:20:11 +0000
changeset 2 53df912d30f4
parent 0 f453ebb75370
child 5 0f973a9226e8
child 6 72eb3fe718b6
Added debugging info to mifconv.exe 'Bug 1414 - mifconv system() call to svgtbinencode seems to have a timing issue with Raptor 2.9.2+', which seems to alleviate the symptoms...
gfxconversion/mifconv/src/mifconv_iconbinaryconverter.cpp
--- a/gfxconversion/mifconv/src/mifconv_iconbinaryconverter.cpp	Tue Feb 02 01:11:11 2010 +0200
+++ b/gfxconversion/mifconv/src/mifconv_iconbinaryconverter.cpp	Mon Feb 08 17:20:11 2010 +0000
@@ -238,8 +238,11 @@
         // enclosed with quotation marks. If the whole string is enclosed with quotation marks then it works...
         // For example: command '"\epoc32\tools\bmconv" "somefile"' does not work while command
         // '""\epoc32\tools\bmconv" "somefile""' does.
+        cout << "Mifconvdebugging - executing" << MifConvString("\""+extConverterCommand+"\""+to+"\"\"").c_str() << endl;
+
         if( system(MifConvString("\""+extConverterCommand+"\""+to+"\"\"").c_str()) < 0 )
         {
+            cout << "Mifconvdebugging - failed to execute" << MifConvString("\""+extConverterCommand+"\""+to+"\"\"").c_str() << endl;
             int ernro = errno;  // The error number must check straight away before any next system command
             
             MifConvString errStr("Executing SVGTBINENCODE failed");