When i try to use gitk it gives me autorelease pool page corrupted

5

As i wrote, since this morning when i try to use gitk on a project with a git instance it gives me this error. This never happened to me since today and i used gitk for months now. The only difference i can point out is that this morning, during an attempt of installation of iStat to monitor my mac mini temperatures, i ran these commands: sudo gem update --system and i tried also to install rubygems-update, idk if there is any correlation.

the specific error is this:

objc[1253]: autorelease pool page 0x7fe20e945000 corrupted
  magic     0x00000000 0x00000000 0x00000000 0x00000000
  should be 0xa1a1a1a1 0x4f545541 0x454c4552 0x21455341
  pthread   0x10f3ecdc0
  should be 0x10f3ecdc0

[1]    1253 abort      gitk

Since i've downloaded it and git through home brew, i've tried to use brew doctor, brew cleanup [-d] [-v], brew unlink and relink, and updated both git and gitk.

I'm using the following command line tool: 12.0.32.28

git
macos
homebrew
gitk
asked on Stack Overflow Jan 28, 2021 by Lufth

2 Answers

8

Nevermind, solved the issue resetting gitk configurations with rm ~/.config/git/gitk

answered on Stack Overflow Jan 28, 2021 by Lufth
0

Thanks to this post, I managed to get gitk working again - I was really missing it! The workaround only works once though, and then it is back. I've started a discussion to try and get it fixed properly here:

https://github.com/Homebrew/discussions/discussions/705

The problem is due to this line in the ~/.config/git/gitk file:

set geometry(state) zoomed

If you change it to:

set geometry(state) normal

Then gitk will work again, but then it changes it back to zoomed, even if you don't change anything, so it starts crashing again. My colleague came up with this workaround for that:

alias gitk="sed -i .bak 's/zoomed/normal/g' ~/.config/git/gitk && /usr/local/bin/gitk"

Setup this alias in Bash and it will replace the broken "zoomed" with "normal" each time you run gitk, until such time as the real problem is fixed.

I hope this extra information helps. I was sure as hell missing this tool!

answered on Stack Overflow Feb 5, 2021 by Colin Ward

User contributions licensed under CC BY-SA 3.0