Changeset 3b24180294c2cc3bdc15c2d2e9ad6693951fffca
- Timestamp:
- 01/28/08 18:04:30
(7 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1201539870 +0000
- git-parent:
[3503ab25515909d273d425f6f5f3bd3074f2cfe2]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1201539870 +0000
- Message:
CSC want mb_str initialized explicitly
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re15891a |
r3b24180 |
|
| 37 | 37 | public U8String (string value) |
|---|
| 38 | 38 | { |
|---|
| | 39 | mb_str = null; |
|---|
| 39 | 40 | if (value == null) |
|---|
| 40 | 41 | return; |
|---|
| … | … | |
| 48 | 49 | public U8String (IntPtr ptr) |
|---|
| 49 | 50 | { |
|---|
| | 51 | mb_str = null; |
|---|
| 50 | 52 | if (ptr == IntPtr.Zero) |
|---|
| 51 | 53 | return; |
|---|