You wrote: > @@ -872,10 +821,15 @@ static int lash_core(lash_t * p_lash) > int output_link2, i_next_switch2; > int cycle_found2 = 0; > int status = 0; > - int *switch_bitmap; /* Bitmap to check if we have processed this > pair */ > + int *switch_bitmap = NULL; /* Bitmap to check if we have > processed this pair */
Why this initialization is needed? The added code can fail which will cause a goto to Exit. At Exit switch_bitmap is freed if it is not zero. The added initialization makes sure it is zero. _______________________________________________ general mailing list [email protected] http://lists.openfabrics.org/cgi-bin/mailman/listinfo/general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general
