c
256 		  // Check for potential overflow before addition
257 		  if (op_index + adj_opcode / lh.line_range > SIZE_MAX - address) {
258 		    // Handle overflow, e.g., return an error or log the issue
259 		    return NULL;
260 		  }
261 		  address += ((op_index + adj_opcode / lh.line_range)
