Debugging a Program With dbx

Read from Uninitialized Memory (rui)


Problem: Attempt to read from uninitialized memory.
Possible causes: Reading local or heap data that has not been initialized.
		foo()
		{ 	int i, j;
			j = i;				/* Read from uninitialized memory (rui) */
		}