[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
kocienda
kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:49:03 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 24db9ce490c8328f5d2366587a52cd08efab471b
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Oct 11 23:22:33 2002 +0000
Fixed uninitialized variable build breaker I got when
doing a Deployment build.
* Bookmarks.subproj/WebBookmarkGroup.m:
(-[WebBookmarkGroup insertNewBookmarkAtIndex:ofBookmark:withTitle:URLString:type:]):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2309 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/Bookmarks.subproj/WebBookmarkGroup.m b/WebKit/Bookmarks.subproj/WebBookmarkGroup.m
index 9070ca2..e8c7a73 100644
--- a/WebKit/Bookmarks.subproj/WebBookmarkGroup.m
+++ b/WebKit/Bookmarks.subproj/WebBookmarkGroup.m
@@ -139,7 +139,7 @@
URLString:(NSString *)newURLString
type:(WebBookmarkType)bookmarkType
{
- WebBookmark *bookmark;
+ WebBookmark *bookmark = nil;
ASSERT_ARG(parent, [parent group] == self);
ASSERT_ARG(parent, [parent bookmarkType] == WebBookmarkTypeList);
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 94b2784..cf9837b 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,11 @@
+2002-10-11 Ken Kocienda <kocienda at apple.com>
+
+ Fixed uninitialized variable build breaker I got when
+ doing a Deployment build.
+
+ * Bookmarks.subproj/WebBookmarkGroup.m:
+ (-[WebBookmarkGroup insertNewBookmarkAtIndex:ofBookmark:withTitle:URLString:type:]):
+
2002-10-11 John Sullivan <sullivan at apple.com>
Added the concept of bookmark proxies; items that can be
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 94b2784..cf9837b 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-10-11 Ken Kocienda <kocienda at apple.com>
+
+ Fixed uninitialized variable build breaker I got when
+ doing a Deployment build.
+
+ * Bookmarks.subproj/WebBookmarkGroup.m:
+ (-[WebBookmarkGroup insertNewBookmarkAtIndex:ofBookmark:withTitle:URLString:type:]):
+
2002-10-11 John Sullivan <sullivan at apple.com>
Added the concept of bookmark proxies; items that can be
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list