On Jan 18 2005, OGAWA Hirofumi wrote: > static int vfat_valid_longname(const unsigned char *name, unsigned int len) > { > - if (len && name[len-1] == ' ') > - return 0; > + if (name[len - 1] == ' ') > + return -EINVAL;
Sorry for the stupid question, but is len guaranteed to be always greater than zero? Otherwise, I think that the test with len would be warranted. And, if that is the case, wouldn't it be better to have it explicitly say if (len > 0...)? Just curious. And sorry again for the stupid question. But as Knuth says, "premature optimization is the root of all evil". Perhaps I'm way too much into proving invariants of algorithms. :-) Thanks for your work, Rogério. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Rogério Brito - [EMAIL PROTECTED] - http://www.ime.usp.br/~rbrito =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/