Sun Studio 12 Update 1: Debugging a Program With dbx

Read From Uninitialized Memory (rui) Error

Problem: Attempt to read from uninitialized memory.

Possible causes: Reading local or heap data that has not been initialized.

Example:

foo()
{   int i, j;
    j = i;    /* Read from uninitialized memory (rui) */
}