"James Hawkins" <[EMAIL PROTECTED]> wrote:

+    text = MSI_RecordGetString( rec, 10 );
+    if ( text )
+    {
+        begin = strchrW( text, '{' );
+        end = strchrW( text, '}' );

Perhaps it would be cleaner to use

end = strchrW( begin, '}' );

--
Dmitry.


Reply via email to