Git Product home page Git Product logo

Comments (2)

futurepaul avatar futurepaul commented on June 16, 2024

Had some fun with Instruments.app. When I create a new window, Leak Check usually complains about roughly 3,000 leaks. A large of majority of the leaks (almost 3,000) were allocated prior to the creation of the second window.

On a hunch I added autorelease to content_view

let content_view = window.contentView();
content_view.autorelease();

Now when I run the multiwin example I can create windows and close them with the traffic light button without issue.

But!

When I record with Instruments.app I get a segfault:

2019-09-18 11:39:20.290 multiwin[31066:4741399] SetMenuTitleWithCFString(menuRef, (CFStringRef)[submenu title]) returned error -50 on line 3516 in -[NSCarbonMenuImpl _itemLostMagicAppleMenuStatus:]
2019-09-18 11:39:20.292 multiwin[31066:4741399] *** Assertion failure in -[NSView dealloc], /BuildRoot/Library/Caches/com.apple.xbs/Sources/AppKit/AppKit-1875.10.100/AppKit.subproj/NSView.m:1678
2019-09-18 11:39:20.294 multiwin[31066:4741399] *** -[NSAutoreleasePool drain]: This pool has already been drained, do not release it (double release).

(I don't get this same error message for the original segfault)

from druid.

cmyr avatar cmyr commented on June 16, 2024

We should only need to call autorelease on things that we explicitly create, and even then not always; for instance windows don't need autorelease by default, because they release themselves when they're closed (at least, this is my best understanding).

Anyway investigated this a bit; we were leaking tons of strings (and now menu items) and the stoplight crash was an over-release of window, I'm pretty sure; to the best of my understanding it's fixed in #166.

from druid.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.