Changeset 1430
- Timestamp:
- Aug 9, 2004, 1:03:33 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 3 edited
-
astronomy/psMetadata.c (modified) (2 diffs)
-
collections/psMetadata.c (modified) (4 diffs)
-
types/psMetadata.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psMetadata.c
r1429 r1430 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.1 7$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-08-09 23:0 2:43 $14 * @version $Revision: 1.18 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-08-09 23:03:33 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 443 443 entry = (psMetadataItem *) psHashLookup(mdTable, key); 444 444 if (entry == NULL) { 445 psError(__func__, "Could not find metadata item with givenkey. Key: %s", key);445 psError(__func__, "Could not find metadata item with key. Key: %s", key); 446 446 return NULL; 447 447 } -
trunk/psLib/src/collections/psMetadata.c
r1416 r1430 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.1 6$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-08-09 19:30:44$14 * @version $Revision: 1.17 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-08-09 23:02:43 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 424 424 psMetadataItem *entry = NULL; 425 425 426 427 if (md == NULL) { 428 psError(__func__, "Null metadata collection not allowed"); 429 return NULL; 430 } 431 426 432 mdTable = md->table; 427 433 if (mdTable == NULL) { … … 449 455 psMetadataItem *entry = NULL; 450 456 457 458 if (md == NULL) { 459 psError(__func__, "Null metadata collection not allowed"); 460 return NULL; 461 } 462 451 463 mdList = md->list; 452 464 if (mdList == NULL) { … … 467 479 { 468 480 psList *mdList = NULL; 481 482 if (md == NULL) { 483 psError(__func__, "Null metadata collection not allowed"); 484 return false; 485 } 469 486 470 487 mdList = md->list; -
trunk/psLib/src/types/psMetadata.c
r1416 r1430 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.1 6$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-08-09 19:30:44$14 * @version $Revision: 1.17 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-08-09 23:02:43 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 424 424 psMetadataItem *entry = NULL; 425 425 426 427 if (md == NULL) { 428 psError(__func__, "Null metadata collection not allowed"); 429 return NULL; 430 } 431 426 432 mdTable = md->table; 427 433 if (mdTable == NULL) { … … 449 455 psMetadataItem *entry = NULL; 450 456 457 458 if (md == NULL) { 459 psError(__func__, "Null metadata collection not allowed"); 460 return NULL; 461 } 462 451 463 mdList = md->list; 452 464 if (mdList == NULL) { … … 467 479 { 468 480 psList *mdList = NULL; 481 482 if (md == NULL) { 483 psError(__func__, "Null metadata collection not allowed"); 484 return false; 485 } 469 486 470 487 mdList = md->list;
Note:
See TracChangeset
for help on using the changeset viewer.
