User Tryke - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:28:14Z http://stackoverflow.com/feeds/user/773 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/34977/byte-level-length-description/35068#35068 4 Answer by Tryke for Byte level length description Tryke 2008-08-29T19:08:24Z 2008-08-29T19:08:24Z <p>You should really use a fixed-width field for your length.</p> <ul> <li>When the program on the receiving end has to read the length field of your packet, how does it know where the length stops?</li> <li>If the length of a packet can potentially reach 4 GB, does a 1-3 byte overhead really matter?</li> <li>Do you see how complex your code has already become? </li> </ul> http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome/6416#6416 32 Answer by Tryke for What are the barriers to understanding pointers and what can be done to overcome them? Tryke 2008-08-08T21:50:15Z 2008-08-08T21:50:15Z <p>In my first Comp Sci class, we did the following exercise. Granted, this was a lecture hall with roughly 200 students in it...</p> <p>Professor writes on the board: "int john;"</p> <p>John stands up</p> <p>Professor writes: "int *sally = &amp;john;"</p> <p>Sally stands up, points at john</p> <p>Professor: "int *bill = sally;"</p> <p>Bill stands up, points at John</p> <p>Professor: "*bill = sam;"</p> <p>John sits down. Sam stands up. Bill &amp; Sally both point to Sam.</p> <p>I think you get the idea. I think we spent about an hour doing this, until we went over the basics of pointer assignment.</p> http://stackoverflow.com/questions/1145/why-am-i-getting-a-malloc-double-free-error-with-realloc/6405#6405 5 Answer by Tryke for Why am I getting a malloc: double free error with realloc()? Tryke 2008-08-08T21:37:38Z 2008-08-08T21:37:38Z <p>First off, sorry I'm late to the party. This is my first stackoverflow answer. :)</p> <p>As has been pointed out, when realloc() is called, you can potentially change the pointer to the memory being reallocated. When this happens, the argument "string" becomes invalid. Even if you reassign it, the change goes out of scope once the function ends.</p> <p>To answer the OP, realloc() returns a pointer to the newly-reallocated memory. The return value needs to be stored somewhere. Generally, you would do this:</p> <pre><code>data *foo = malloc(SIZE * sizeof(data));<br>data *bar = realloc(foo, NEWSIZE * sizeof(data));<br>/* Test bar for safety before blowing away foo */<br>if (bar != NULL)<br>{<br> foo = bar;<br> bar = NULL;<br>}<br>else<br>{<br> fprintf(stderr, "Crap. Memory error.\n");<br> free(foo);<br> exit(-1);<br>}<br></code></pre> <p>As TyBoer points out, you guys can't change the value of the pointer being passed in as the input to this function. You can assign whatever you want, but the change will go out of scope at the end of the function. In the following block, "input" may or may not be an invalid pointer once the function completes:</p> <pre><code>void foobar(char *input, int newlength)<br>{<br> /* Here, I ignore my own advice to save space. Check your return values! */<br> input = realloc(input, newlength * sizeof(char));<br>}<br></code></pre> <p>Mark tries to work around this by returning the new pointer as the output of the function. If you do that, the onus is on the caller to never again use the pointer he used for input. If it matches the return value, then you have two pointers to the same spot and only need to call free() on one of them. If they don't match, the input pointer now points to memory that may or may not be owned by the process. Dereferencing it could cause a segmentation fault.</p> <p>You could use a double pointer for the input, like this:</p> <pre><code>void foobar(char **input, int newlength)<br>{<br> *input = realloc(*input, newlength * sizeof(char));<br>}<br></code></pre> <p>If the caller has a duplicate of the input pointer somewhere, that duplicate still might be invalid now.</p> <p>I think the cleanest solution here is to avoid using realloc() when trying to modify the function caller's input. Just malloc() a new buffer, return that, and let the caller decide whether or not to free the old text. This has the added benefit of letting the caller keep the original string!</p> http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome/6416#6416 Comment by Tryke on What are the barriers to understanding pointers and what can be done to overcome them? Tryke 2008-10-02T18:05:02Z 2008-10-02T18:05:02Z I don't think I got it wrong. My intention was to change the value of the pointed-to variable from John to Sam. It's a little harder to represent with people, because it looks like you're changing the value of both pointers. http://stackoverflow.com/questions/132798/what-should-every-programmer-know/133010#133010 Comment by Tryke on What should every programmer know? Tryke 2008-09-29T17:20:01Z 2008-09-29T17:20:01Z @Rob, it so happens that you listed 8 bullet points. That happens to be 10 in octal. I suppose it was unintentional :) http://stackoverflow.com/questions/132241/hidden-features-of-c/132314#132314 Comment by Tryke on Hidden features of C Tryke 2008-09-25T20:52:24Z 2008-09-25T20:52:24Z Please tell me you don't actually use this &quot;all the time&quot;, like the question asks! http://stackoverflow.com/questions/84286/is-there-any-tool-which-can-generate-a-report-for-a-valid-c-program/84304#84304 Comment by Tryke on Is there any tool which can generate a report for a valid C program Tryke 2008-09-17T16:10:08Z 2008-09-17T16:10:08Z Doxygen works best when you put specially-formatted comments in your code, usually with your function declarations.