This website works better with JavaScript.
Home
Help
Register
Sign In
pEp.foundation
/
pEpEngine
Watch
16
Star
1
Fork
13
Code
Issues
Pull Requests
2
Releases
452
Wiki
Activity
Browse Source
Return list end as intended in stringlist_get_tail (oops, thanks Roker for the catch
doxygen_doc
Krista Bennett
12 months ago
parent
9033abdf83
commit
ab3a47cb4d
1 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
src/stringlist.c
+ 1
- 2
src/stringlist.c
View File
@ -403,9 +403,8 @@ stringlist_t* stringlist_get_tail(stringlist_t* sl) {
if
(
!
sl
|
|
!
sl
-
>
value
)
/
/
empty
string
is
a
value
,
yes
?
return
NULL
;
stringlist_t
*
retval
=
sl
;
while
(
sl
-
>
next
)
{
sl
=
sl
-
>
next
;
}
return
retva
l
;
return
s
l
;
}
Write
Preview
Loading…
Cancel
Save