Skip to content

Commit

Permalink
Fix for CORE-1165 is just one byte change in the source code. :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
robocop committed Mar 12, 2007
1 parent 2407df1 commit c5a711e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jrd/par.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ static PsqlException* par_conditions(thread_db* tdbb, CompilerScratch* csb)
dep_node = PAR_make_node(tdbb, e_dep_length);
dep_node->nod_type = nod_dependency;
dep_node->nod_arg[e_dep_object] =
(jrd_nod*) (IPTR)exception_list->xcp_rpt[0].xcp_code;
(jrd_nod*) (IPTR)exception_list->xcp_rpt[i].xcp_code;
dep_node->nod_arg[e_dep_object_type] = (jrd_nod*)(IPTR) obj_exception;
csb->csb_dependencies.push(dep_node);
break;
Expand Down

0 comments on commit c5a711e

Please sign in to comment.