diff options
| author | 2019-05-19 00:27:43 +0200 | |
|---|---|---|
| committer | 2019-05-19 00:27:43 +0200 | |
| commit | 23e5a7636bba1565d000adcd4c3debc0788398c5 (patch) | |
| tree | 4b3d51f3e0cfd34a3ea0b21ac87bfc788e3f0022 /src/plist.c | |
| parent | 08c6143b870167ad29f9c20a298e0f75c986d0ea (diff) | |
| download | libplist-23e5a7636bba1565d000adcd4c3debc0788398c5.tar.gz libplist-23e5a7636bba1565d000adcd4c3debc0788398c5.tar.bz2 | |
plist_array_get_item_index(): return UINT_MAX instead of 0 when node can't be found
Diffstat (limited to 'src/plist.c')
| -rw-r--r-- | src/plist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plist.c b/src/plist.c index f22a8a0..3ffedc4 100644 --- a/src/plist.c +++ b/src/plist.c | |||
| @@ -430,7 +430,7 @@ PLIST_API uint32_t plist_array_get_item_index(plist_t node) | |||
| 430 | { | 430 | { |
| 431 | return node_child_position(father, node); | 431 | return node_child_position(father, node); |
| 432 | } | 432 | } |
| 433 | return 0; | 433 | return UINT_MAX; |
| 434 | } | 434 | } |
| 435 | 435 | ||
| 436 | static void _plist_array_post_insert(plist_t node, plist_t item, long n) | 436 | static void _plist_array_post_insert(plist_t node, plist_t item, long n) |
