Linux people doing Linux things, it seems.

  • @ZILtoid1991@lemmy.world
    link
    fedilink
    115 days ago

    Pointers are not guaranteed to be safe. DIP1000 was supposed to solve the issue of a pointer referencing to a now expired variable (see example below), but it’s being replaced by something else instead.

    int* p;
    {
      int q = 42;
      p = &q;
    }
    writeln(*p);     //ERROR: This will cause memory leakage, due to q no longer existing