Coder Social home page Coder Social logo

Comments (6)

siriak avatar siriak commented on May 21, 2024

@imp2002 could you verify if this is the case, please?

from rust.

github-actions avatar github-actions commented on May 21, 2024

This issue has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

from rust.

imp2002 avatar imp2002 commented on May 21, 2024

@Kylebrown9
Hello, why NonNull never dropped? Impl LinkedList in rust-lang doc with NonNull too. Can you explain where is wrong? I checked, but not found. Thanks.

from rust.

esoterra avatar esoterra commented on May 21, 2024

The LinkedList in the docs you referenced provides a Drop implementation (line 993) that performs the required freeing. Dropping NonNull itself does not free the referenced memory.

from rust.

imp2002 avatar imp2002 commented on May 21, 2024

Use Box::from_raw() free the referenced memory. After calling this function, the raw pointer is owned by the resulting Box. Specifically, the Box destructor will call the destructor of Node<T> and free the allocated memory.

fn pop_back_node(&mut self) -> Option<Box<Node<T>>> {
        self.tail.map(|node| unsafe {
            let node = Box::from_raw(node.as_ptr());
            self.tail = node.prev;

            match self.tail {
                None => self.head = None,
                Some(tail) => (*tail.as_ptr()).next = None,
            }

            self.len -= 1;
            node
        })
    }

from rust.

esoterra avatar esoterra commented on May 21, 2024

Something like that could work.

Until Drop is implemented for LinkedList such that all nodes are freed, LinkedList will leaks node memory when dropped.
The drop implementation could use Box::from_raw(...) as you say or ptr::drop_in_place(...).

This is a big issue with the example and should be fixed ASAP to avoid misleading readers on the use of NonNull.

from rust.

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.