Greetings,<br><br>First, congratulations to chuck team and all responsible for the recent releases.<br><br>I found a few bugs, these were tested in the latest ChucK and miniAudicle builds (win32) on 64-bit Windows 7 machines. <br>

<br>1. Machine.add doesn't seem to support drive specifications in paths. (<a href="http://test1.ck">test1.ck</a>)<br><br><div style="margin-left:40px"><<< Machine.add( "C:/Users/Public/<a href="http://test2.ck">test2.ck</a>" ) >>>; //doesn't work<br>

<br><<< Machine.add( "/Users/Public/<a href="http://test2.ck">test2.ck</a>" ) >>>; //works<br></div><br>2. A crashing bug when dealing with string non-literals. (<a href="http://test6.ck">test6.ck</a>)<br>

<br>I was unable to reproduce it outside of an OSC context, I don't know if it affects non-Windows systems.<br><br>Basically, I was capturing string arguments from received OSC messages, and I found that one usage worked fine:<br>

<br><div style="margin-left:40px"><<< tsEvent.getString() >>>; //this should work<br></div><br>but that trying to store it into a string object was crashing:<br><br><div style="margin-left:40px">tsEvent.getString() => string str2; //this should crash<br>

        <<< str2 >>>;<br></div><br>regards,<br><br>Graham<br>