~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/intern/library.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *  Contains management of ID's and libraries
5
5
 *  allocate and free of all library data
6
6
 * 
7
 
 * $Id: library.c,v 1.10 2004/04/22 19:58:54 ton Exp $
 
7
 * $Id: library.c,v 1.12 2005/04/02 15:36:56 zuster Exp $
8
8
 *
9
9
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
10
10
 *
43
43
#include <config.h>
44
44
#endif
45
45
 
46
 
#ifdef WIN32
47
 
#include "BLI_winstuff.h"
48
 
#endif
49
 
 
50
46
#include "MEM_guardedalloc.h"
51
47
 
52
48
/* all types are needed here, in order to do memory operations */
710
706
                
711
707
                idtest= lb->first;
712
708
                while(idtest) {
713
 
                        if(strcasecmp(idtest->name, id->name)>0 || idtest->lib) {
 
709
                        if(BLI_strcasecmp(idtest->name, id->name)>0 || idtest->lib) {
714
710
                                BLI_insertlinkbefore(lb, idtest, id);
715
711
                                break;
716
712
                        }