Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates-src > by-pkgid > 2fb531fb37d9583775f6bd75ae182153 > files > 3

lib3ds-1.3.0-9.fc13.src.rpm

diff -Naur lib3ds-1.3.0.orig/lib3ds/mesh.c lib3ds-1.3.0/lib3ds/mesh.c
--- lib3ds-1.3.0.orig/lib3ds/mesh.c	2007-06-20 19:04:08.000000000 +0200
+++ lib3ds-1.3.0/lib3ds/mesh.c	2010-09-14 06:34:39.987807911 +0200
@@ -87,8 +87,11 @@
             faces=lib3ds_io_read_word(io);
             for (i=0; i<faces; ++i) {
               index=lib3ds_io_read_word(io);
-              ASSERT(index<mesh->faces);
-              strcpy(mesh->faceL[index].material, name);
+              if (index<mesh->faces) {
+                strncpy(mesh->faceL[index].material, name, 64);
+              } else {
+                // TODO warning
+              }
             }
           }
           break;