php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #81381 Wrong line number on empty sides of diffs
Submitted: 2021-08-24 19:42 UTC Modified: -
From: gingko at gingko dot ovh Assigned:
Status: Open Package: xdiff (PECL)
PHP Version: 7.3.29 OS: Linux Debian 10
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
3 + 50 = ?
Subscribe to this entry?

 
 [2021-08-24 19:42 UTC] gingko at gingko dot ovh
Description:
------------
When comparing two strings using xdiff_string_diff, on any added line groups (one side with new lines, one side empty), the line number for the empty side is one less than what it should do.

This caused me some headaches in working on a PHP web page where I was trying to parse and use these line number values for extracting lines which are common to both sides.

I will likely need to workaround this by adding one to the line number if the corresponding length is zero.

Using xdiff-2.1.0.


Test script:
---------------
echo
  xdiff_string_diff(
    "A\nA\nA\nB\nB\nB\nB\nC\nC\nC\nC\n",
    "A\nA\nA\nC\nC\nC\nC\n",
    0);

Expected result:
----------------
@@ -4,4 +4,0 @@
-B
-B
-B
-B


Actual result:
--------------
@@ -4,4 +3,0 @@
-B
-B
-B
-B


Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 10:01:28 2024 UTC