Merge branch 'develop' of github.com:syoyo/tinyobjloader into develop

This commit is contained in:
Syoyo Fujita
2016-05-25 19:06:42 +09:00
2 changed files with 64 additions and 21 deletions

View File

@@ -183,7 +183,7 @@ bool gz_load(std::vector<char>* buf, const char* filename)
const char* get_file_data(size_t *len, const char* filename)
{
char *ext = strrchr(filename, '.');
const char *ext = strrchr(filename, '.');
size_t data_len = 0;
const char* data = nullptr;