On 6/9/07, Johan Herland <johan@xxxxxxxxxxx> wrote:
+ /* Verify the tag-name: we don't allow control characters or spaces in it */ + for (i = 4;;) { + unsigned char c = tag_line[i++]; + if (c == '\n') + break; + if (c > ' ') + continue; + return error("char" PD_FMT ": could not verify tag name", tag_line + i - data); + }
This looks very familiar. Haven't you just made a very useless patch which had this very same code? How about putting it in its own function and just call it from these two places? And what problem do you have with pointers?! - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html