ffi 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/ext/ffi_c/Struct.c +1 -0
  3. data/lib/ffi_c.bundle +0 -0
  4. metadata +6 -4
data/Rakefile CHANGED
@@ -75,7 +75,7 @@ PROJ.name = 'ffi'
75
75
  PROJ.authors = 'Wayne Meissner'
76
76
  PROJ.email = 'wmeissner@gmail.com'
77
77
  PROJ.url = 'http://wiki.github.com/ffi/ffi'
78
- PROJ.version = '1.0.6'
78
+ PROJ.version = '1.0.7'
79
79
  PROJ.rubyforge.name = 'ffi'
80
80
  PROJ.readme_file = 'README.rdoc'
81
81
 
@@ -194,6 +194,7 @@ static void
194
194
  struct_free(Struct* s)
195
195
  {
196
196
  xfree(s->rbReferences);
197
+ xfree(s);
197
198
  }
198
199
 
199
200
 
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 6
10
- version: 1.0.6
9
+ - 7
10
+ version: 1.0.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Wayne Meissner
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-02-21 00:00:00 +10:00
18
+ date: 2011-03-16 00:00:00 +10:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -49,6 +49,7 @@ extensions:
49
49
  extra_rdoc_files:
50
50
  - History.txt
51
51
  - README.rdoc
52
+ - lib/ffi_c.bundle
52
53
  files:
53
54
  - History.txt
54
55
  - LICENSE
@@ -379,6 +380,7 @@ files:
379
380
  - lib/ffi/types.rb
380
381
  - lib/ffi/union.rb
381
382
  - lib/ffi/variadic.rb
383
+ - lib/ffi_c.bundle
382
384
  - spec/ffi/async_callback_spec.rb
383
385
  - spec/ffi/bool_spec.rb
384
386
  - spec/ffi/buffer_spec.rb