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
Hi,
In runCJAlgorithm(), the k variable is uninitialized before being copied to prev the first time thru the for-loop. To prevent k from being filled with garbage data, should it be initialized to, say, nilKeyboard before the first loop?
The text was updated successfully, but these errors were encountered:
nilKeyboard would be a sensible default value. It doesn't matter much,
because prevk is not used on the first time through the loop.
On 7/30/12 11:44 AM, FrankDMartinez wrote:
Hi,
In runCJAlgorithm(), the k variable is uninitialized before being copied to prev the first time thru the for-loop. To prevent k from being filled with garbage data, should it be initialized to, say, nilKeyboard before the first loop?
Reply to this email directly or view it on GitHub: #8
Hi,
In runCJAlgorithm(), the
k
variable is uninitialized before being copied toprev
the first time thru thefor-loop
. To preventk
from being filled with garbage data, should it be initialized to, say,nilKeyboard
before the first loop?The text was updated successfully, but these errors were encountered: