Correctly initialize the responses array list.
authorZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Mon, 19 Jan 2009 15:56:10 +0000 (15:56 +0000)
committerZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Mon, 19 Jan 2009 15:56:10 +0000 (15:56 +0000)
svn path=/trunk/; revision=460

src/rygel/rygel-http-server.vala

index 4765649..7c9908d 100644 (file)
@@ -49,7 +49,7 @@ public class Rygel.HTTPServer : GLib.Object {
 
     public HTTPServer (GUPnP.Context context, string name) {
         this.context = context;
-        this.responses = new ArrayList<LiveResponse> ();
+        this.responses = new ArrayList<HTTPResponse> ();
 
         this.path_root = SERVER_PATH_PREFIX + "/" + name;