You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally filed by stefan.richter on 2008-08-27T08:43:10
What steps will reproduce the problem?
run this code:
var uid:String = CreateUUID.createUUID();
trace(uid);
notice that in about 1 in 10 cases the generated uid string contains an
equal sign = as the last character
What is the expected output? What do you see instead?
A pseudo random string without any equal signs.
What version of the product are you using? On what operating system?
OSX, Flexbuilder 3.
Please provide any additional information below.
It almost appears that the line
return nonce.toLowerCase().replace("=", "");
in the CreateUUID is buggy since the last = sign is not replaced.
The text was updated successfully, but these errors were encountered:
Originally filed by stefan.richter on 2008-08-27T08:43:10
What steps will reproduce the problem?
var uid:String = CreateUUID.createUUID();
trace(uid);
equal sign = as the last character
What is the expected output? What do you see instead?
A pseudo random string without any equal signs.
What version of the product are you using? On what operating system?
OSX, Flexbuilder 3.
Please provide any additional information below.
It almost appears that the line
return nonce.toLowerCase().replace("=", "");
in the CreateUUID is buggy since the last = sign is not replaced.
The text was updated successfully, but these errors were encountered: