Changeset f6d77ea6d62793640f0d3bc331f2ee9569adbbd1

User picture

Commiter: Nikos Chantziaras

Author: mike.roberts

Parent: 909cf34df4

(2011/12/25 12:24) 5 months ago

Fix uninitialized variables

Affected files

Updated tads3/vmbignum.cpp Download diff

909cf34df493e524ecb8927b0c9b1e9f941829e1f6d77ea6d62793640f0d3bc331f2ee9569adbbd1
8587
     *   significant digits from one of the two inputs - we can't be
8587
     *   significant digits from one of the two inputs - we can't be
8588
     *   cutting off both inputs.  
8588
     *   cutting off both inputs.  
8589
     */
8589
     */
8590
    int trail_dig, trail_val;
8590
    int trail_dig = 0, trail_val = 0;
8591
    if (lo3 - 1 >= lo1 && lo3 - 1 <= hi1)
8591
    if (lo3 - 1 >= lo1 && lo3 - 1 <= hi1)
8592
    {
8592
    {
8593
        /* remember the digit */
8593
        /* remember the digit */