Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: alexcrichton/dlmalloc-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.2.1
Choose a base ref
...
head repository: alexcrichton/dlmalloc-rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.2.2
Choose a head ref
  • 11 commits
  • 7 files changed
  • 3 contributors

Commits on Oct 2, 2021

  1. Avoid passing null_mut() to ptr::offset.

    Split `Chunk::mem_offset` out of `Chunk::to_mem`, and use that to avoid
    passing a null pointer to `Chunk::to_mem`, which calls `ptr::offset`,
    which Miri diagnoses as Undefined Behavior.
    
    Fixes #19.
    sunfishcode committed Oct 2, 2021
    Configuration menu
    Copy the full SHA
    294a43b View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2021

  1. Merge pull request #20 from sunfishcode/master

    Avoid passing `null_mut()` to `ptr::offset`.
    alexcrichton authored Oct 4, 2021
    Configuration menu
    Copy the full SHA
    dabe431 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2021

  1. Configuration menu
    Copy the full SHA
    3bc9ca2 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2021

  1. Configuration menu
    Copy the full SHA
    4c7334a View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2021

  1. Configuration menu
    Copy the full SHA
    96c59c6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #22 from nivkner/fork_safe

    make allocations safe in fork
    alexcrichton authored Oct 26, 2021
    Configuration menu
    Copy the full SHA
    0a1c253 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8dc1a86 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2021

  1. Merge pull request #23 from nivkner/unixify

    unify linux and macos into a single module
    alexcrichton authored Oct 27, 2021
    Configuration menu
    Copy the full SHA
    fb9bb77 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2021

  1. Add support for wasm64

    Tweak some cfgs and some code to ensure that this crate compiles and
    works on wasm64 in the same manner as wasm32
    alexcrichton committed Nov 1, 2021
    Configuration menu
    Copy the full SHA
    b510fa9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #25 from alexcrichton/wasm64

    Add support for wasm64
    alexcrichton authored Nov 1, 2021
    Configuration menu
    Copy the full SHA
    91861fb View commit details
    Browse the repository at this point in the history
  3. Bump to 0.2.2

    alexcrichton committed Nov 1, 2021
    Configuration menu
    Copy the full SHA
    d9ed983 View commit details
    Browse the repository at this point in the history
Loading