You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected behavior
output shows correct, full matched code.
Desktop (please complete the following information):
OS: Ubuntu
OS Version 18.04
NodeJS Version v16.20.2
jscpd version 3.5.10
Additional context
b/utsname.c
#include<linux/export.h>#include<linux/uts.h>#include<linux/utsname.h>#include<linux/err.h>// only in testing hahahhastaticstructuts_namespace*create_uts_ns(void) // line 6 here.
{
structuts_namespace*uts_ns;
uts_ns=kmalloc(sizeof(structuts_namespace), GFP_KERNEL);
if (uts_ns)
kref_init(&uts_ns->kref);
returnuts_ns;
}
a/utsname.c contains function implement in b/utsname.c
The text was updated successfully, but these errors were encountered:
Describe the bug
consoleFull/html reporter shows wrong code block than line number gives
To Reproduce
jscpd -r consoleFull --skipLocal --mode strict b/utsname.c a/utsname.c
Screenshots
error code block as following:
Expected behavior
output shows correct, full matched code.
Desktop (please complete the following information):
Additional context
b/utsname.c
a/utsname.c contains function implement in b/utsname.c
The text was updated successfully, but these errors were encountered: