User Tryke - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:28:14Zhttp://stackoverflow.com/feeds/user/773http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/34977/byte-level-length-description/35068#350684Answer by Tryke for Byte level length descriptionTryke2008-08-29T19:08:24Z2008-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#641632Answer by Tryke for What are the barriers to understanding pointers and what can be done to overcome them?Tryke2008-08-08T21:50:15Z2008-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 = &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 & 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#64055Answer by Tryke for Why am I getting a malloc: double free error with realloc()?Tryke2008-08-08T21:37:38Z2008-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#6416Comment by Tryke on What are the barriers to understanding pointers and what can be done to overcome them?Tryke2008-10-02T18:05:02Z2008-10-02T18:05:02ZI 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#133010Comment by Tryke on What should every programmer know?Tryke2008-09-29T17:20:01Z2008-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#132314Comment by Tryke on Hidden features of CTryke2008-09-25T20:52:24Z2008-09-25T20:52:24ZPlease tell me you don't actually use this "all the time", like the question asks!http://stackoverflow.com/questions/84286/is-there-any-tool-which-can-generate-a-report-for-a-valid-c-program/84304#84304Comment by Tryke on Is there any tool which can generate a report for a valid C programTryke2008-09-17T16:10:08Z2008-09-17T16:10:08ZDoxygen works best when you put specially-formatted comments in your code, usually with your function declarations.