Bugzilla – Attachment 67406 Details for
Bug 148311
Beagle indexing leaves stray processes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
IDP Log In
|
Forgot Password
[patch]
The patch
beagle-sqlite-64bit--0.2.1.patch (text/plain), 1.19 KB, created by
Joe Shaw
on 2006-02-09 18:55:38 UTC
(
hide
)
Description:
The patch
Filename:
MIME Type:
Creator:
Joe Shaw
Created:
2006-02-09 18:55:38 UTC
Size:
1.19 KB
patch
obsolete
>diff -rup beagle-0.2.1-pristine/beagled/Mono.Data.SqliteClient/SqliteDataReader.cs beagle-0.2.1/beagled/Mono.Data.SqliteClient/SqliteDataReader.cs >--- beagle-0.2.1-pristine/beagled/Mono.Data.SqliteClient/SqliteDataReader.cs 2005-10-24 17:56:28.000000000 -0400 >+++ beagle-0.2.1/beagled/Mono.Data.SqliteClient/SqliteDataReader.cs 2006-02-09 12:58:57.000000000 -0500 >@@ -128,7 +128,7 @@ namespace Mono.Data.SqliteClient > for (int i = 0; i < pN; i++) { > string colName = ""; > if (version == 2) { >- IntPtr fieldPtr = (IntPtr)Marshal.ReadInt32 (pazColName, i*IntPtr.Size); >+ IntPtr fieldPtr = Marshal.ReadIntPtr (pazColName, i*IntPtr.Size); > colName = Marshal.PtrToStringAnsi (fieldPtr); > } else { > colName = Marshal.PtrToStringAnsi (Sqlite.sqlite3_column_name (pVm, i)); >@@ -143,7 +143,7 @@ namespace Mono.Data.SqliteClient > for (int i = 0; i < pN; i++) { > string colData = ""; > if (version == 2) { >- IntPtr fieldPtr = (IntPtr)Marshal.ReadInt32 (pazValue, i*IntPtr.Size); >+ IntPtr fieldPtr = Marshal.ReadIntPtr (pazValue, i*IntPtr.Size); > colData = Marshal.PtrToStringAnsi (fieldPtr); > current_row.Add (Marshal.PtrToStringAnsi (fieldPtr)); > } else {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
|
Diff
Attachments on
bug 148311
:
67052
|
67072
| 67406