Forums before death by AOL, social media and spammers... "We can't have nice things"
|    comp.lang.c    |    Meh, in C you gotta define EVERYTHING    |    243,242 messages    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
|    Message 241,268 of 243,242    |
|    Chris M. Thomasson to Kaz Kylheku    |
|    Re: Nice way of allocating flexible stru    |
|    08 Oct 25 13:35:05    |
   
   From: chris.m.thomasson.1@gmail.com   
      
   On 10/7/2025 11:35 PM, Kaz Kylheku wrote:   
   > Jonas Lund of https://whizzter.woorlic.org/ mentioned this   
   > trick in a HackerNews comment:   
   >   
   > Given:   
   >   
   > struct S {   
   > // ...   
   > T A[];   
   > };   
   >   
   > Don't do this:   
   >   
   > malloc(offsetof(S, A) + n * sizeof (T));   
   >   
   > But rather this:   
   >   
   > malloc(offsetof(S, A[n]));   
   >   
   > It's easy to forget that the second argument of offsetof is a   
   > designator, not simply a member name.   
   >   
      
   For some god damn reason its raising memories of an older region   
   allocator I mocked up in C:   
      
   Still on pastebin. funny:   
      
   https://groups.google.com/g/comp.lang.c/c/H_p2Ki5JhYU/m/rlSzqJsxCQAJ   
      
   https://pastebin.com/raw/f37a23918   
   (no ads, raw text)   
      
   --- SoupGate-Win32 v1.05   
    * Origin: you cannot sedate... all the things you hate (1:229/2)   
|
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
(c) 1994, bbs@darkrealms.ca