git-grep Bus Error

3 messages, 3 authors, 2016-06-15 · open the first message on its own page

git-grep Bus Error

From: Brian Gernhardt <hidden>
Date: 2016-06-15 22:46:21

The --color display code in git-grep is giving me a bus error in  
show_line at line 492:
                        printf("%.*s%s%.*s%s",
                               match.rm_so, bol,
                               opt->color_match,
                               match.rm_eo - match.rm_so, bol +  
match.rm_so,
                               GIT_COLOR_RESET);
The first problem is that %.*s does not appear to do on OS X what the  
author thinks it does.  A precision of 0 for %s is listed in "man  
printf" as printing the entire string.

To fix that, I changed it to the following:
			if( match.rm_so > 0 )
				printf( "%.*s", match.rm_so, bol );
			if( match.rm_eo > match.rm_so )
				printf("%s%.*s%s",
					   opt->color_match,
					   match.rm_eo - match.rm_so, bol + match.rm_so,
					   GIT_COLOR_RESET);
This code does not fail, but instead gives lines like the following  
(showing the raw color codes):

.gitignore:\033[31m\033[1m(nugit

GIT_COLOR_RESET is apparently being ignored, and I don't know why.

Adding a line to check the values of rm_so, rm_eo, and the difference  
between the two gives:
			printf( "%d %d %d",
				  match.rm_so, match.rm_eo,
				  match.rm_eo - match.rm_so );
.gitignore:0 0 3\033[31m\033[1m(nugit
.mailmap:23 0 26(null)\033[31m\033[1m(nugit-shortlog to fix a few  
botched name translations-shortlog to fix a few botched name  
translations

And now I'm baffled.  Apparently my computer thinks 0 - 0 == 3 and 0 -  
23 == 26.

Can I get some help?

~~ Brian

Re: git-grep Bus Error

From: Sam Hocevar <hidden>
Date: 2016-06-15 22:46:21

On Sun, Mar 08, 2009, Brian Gernhardt wrote:
quoted
		printf( "%d %d %d",
			  match.rm_so, match.rm_eo,
			  match.rm_eo - match.rm_so );
.gitignore:0 0 3\033[31m\033[1m(nugit
.mailmap:23 0 26(null)\033[31m\033[1m(nugit-shortlog to fix a few  
botched name translations-shortlog to fix a few botched name  
translations

And now I'm baffled.  Apparently my computer thinks 0 - 0 == 3 and 0 -  
23 == 26.
   rm_so and rm_eo are ints on Linux but off_t's on Darwin, hence
probably int64_t's here. You should cast the arguments.

-- 
Sam.

Re: git-grep Bus Error

From: Brian Gernhardt <hidden>
Date: 2016-06-15 22:46:21

On Mar 8, 2009, at 7:41 PM, Sam Hocevar wrote:
On Sun, Mar 08, 2009, Brian Gernhardt wrote:
quoted
quoted
			printf( "%d %d %d",
				  match.rm_so, match.rm_eo,
				  match.rm_eo - match.rm_so );
.gitignore:0 0 3\033[31m\033[1m(nugit
.mailmap:23 0 26(null)\033[31m\033[1m(nugit-shortlog to fix a few
botched name translations-shortlog to fix a few botched name
translations

And now I'm baffled.  Apparently my computer thinks 0 - 0 == 3 and  
0 -
23 == 26.
  rm_so and rm_eo are ints on Linux but off_t's on Darwin, hence
probably int64_t's here. You should cast the arguments.

And that explains the warnings about the parameters to printf not  
being integers.  I was looking at compat/regex/regex.h and was confused.

Adding a cast to int on all of the format specifiers solves my  
problems.  Thank you.

~~ Brian
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help