After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 723195 - string.joinv() with empty array as argument goes really wrong
string.joinv() with empty array as argument goes really wrong
Status: RESOLVED FIXED
Product: vala
Classification: Core
Component: Bindings: GLib
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
: 723102 (view as bug list)
Depends on:
Blocks: 723102
 
 
Reported: 2014-01-28 21:29 UTC by Jussi Kukkonen
Modified: 2014-03-03 09:54 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
glib-2.0: Handle empty array as string.joinv() argument (892 bytes, patch)
2014-01-28 22:08 UTC, Jussi Kukkonen
none Details | Review

Description Jussi Kukkonen 2014-01-28 21:29:47 UTC
After commit 3c0674fa (from bug 686451), the below code will allocate 18446744073709551613 bytes. That joinv is roughly what valadoc ends up doing when building rygel docs and a long comment happens to be empty: See bug 723102.

public static int main (string[] args) {
        var s =  string.joinv ("\n * ", "".split ("\n"));
        print ("%s\n", s);

        return ;
}
Comment 1 Jussi Kukkonen 2014-01-28 22:08:06 UTC
Created attachment 267450 [details] [review]
glib-2.0: Handle empty array as string.joinv() argument
Comment 2 Evan Nemerson 2014-01-29 00:10:42 UTC
(In reply to comment #1)
> Created an attachment (id=267450) [details] [review]
> glib-2.0: Handle empty array as string.joinv() argument

Unfortunately that doesn't fix the issue for length == -1 (length will be != 0, so it will always get caught up in that condition instead of moving on to the == -1 check).
Comment 3 Evan Nemerson 2014-01-29 00:11:17 UTC
commit 0d8ab7be120106388b4c9777ad4715069a575228
Author: Evan Nemerson <evan@coeus-group.com>
Date:   Tue Jan 28 16:06:50 2014 -0800

    glib-2.0: fix string.joinv for empty (but not null) arrays
    
    Fixes bug 723195.
Comment 4 Jussi Kukkonen 2014-01-29 09:21:17 UTC
(In reply to comment #2)
> Unfortunately that doesn't fix the issue for length == -1

Oops. Thanks for a thorough and quick fix.
Comment 5 Jussi Kukkonen 2014-01-29 09:43:12 UTC
*** Bug 723102 has been marked as a duplicate of this bug. ***
Comment 6 Daiki Ueno 2014-03-03 09:39:29 UTC
Sorry for commenting on a closed bug, but it seems that commit 0d8ab7be introduced a new behavior when null is in the middle of the array, as in tests/methods/bug723195.vala:

  string[] a = { "foo", "bar", null, "baz" };

  a.length = 4;
  assert (string.joinv (":", a) == "foo:bar::baz");

Is it really useful?  As I wrote in bug 686451, previously I manually terminated the array with null to be sure.  Now all such code results in a separator at the end.
Comment 7 Luca Bruno 2014-03-03 09:42:00 UTC
You can set a.length = -1, that would make the array null terminated for string.joinv I guess.
Comment 8 Daiki Ueno 2014-03-03 09:54:26 UTC
Ah, yes.  That would be the best workaround to support both newer and older valac.  Thanks.