aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index c51e3e0f56..b30d67ab25 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2000-07-10 Dan Winship <danw@helixcode.com>
+
+ * e-shell.c (impl_Shell_user_select_folder): Translate a
+ default_folder of "" into NULL (which can't be passed over CORBA).
+
2000-07-10 Ettore Perazzoli <ettore@helixcode.com>
* e-storage.c (e_storage_new_folder): Removed debugging message.
diff --git a/shell/e-shell.c b/shell/e-shell.c
index 8a262b4a8a..cd73795ee5 100644
--- a/shell/e-shell.c
+++ b/shell/e-shell.c
@@ -237,6 +237,9 @@ impl_Shell_user_select_folder (PortableServer_Servant servant,
allowed_types[i] = corba_allowed_types->_buffer[i];
allowed_types[corba_allowed_types->_length] = NULL;
+ /* CORBA doesn't allow you to pass a NULL pointer. */
+ if (!*default_folder)
+ default_folder = NULL;
folder_selection_dialog = e_shell_folder_selection_dialog_new (shell, title, default_folder, allowed_types);
listener_duplicate = CORBA_Object_duplicate (listener, ev);
efill tests.Adrian Sutton2018-11-203-2/+177 | * Add test that checks EXTCODEHASH of self destructed account after original ca...Adrian Sutton2018-11-201-0/+81 | * Add STATICCALL variant.Adrian Sutton2018-11-202-0/+136 | * Add test for EXTCODEHASH of account created and then deleted in same transact...Adrian Sutton2018-11-182-0/+149 * | Merge pull request #547 from ethereum/consttransitionwinsvega2018-11-205-7/+218 |\ \ | * | fix blockchain tests expect section json scheme checkconsttransitionDimitry2018-11-204-7/+7 | * | constantinople transition testDimitry2018-11-161-0/+211 | |/ * | Fill blockchain tests.Adrian Sutton2018-11-181-0/+85 * | Add test for EXTCODEHASH of account created in same transaction.Adrian Sutton2018-11-181-0/+72 |/ * fill blockchain testsJose Hugo De la cruz Romero2018-11-1512-0/+972 * fix precompiles codehash test, refill using latest aleth/testethJose Hugo De la cruz Romero2018-11-151-120/+125 * EXTCODEHASH testsJose Hugo De la cruz Romero2018-11-154-0/+390 * Merge pull request #545 from ethereum/moresstorewinsvega2018-11-145190-0/+669477 |\ | * fill as blockchain sstore combinationsmoresstoreDimitry2018-11-135187-0/+663936 | * sstore combinations change testsDimitry2018-11-133-0/+5541 * | Fill blockchain tests.Adrian Sutton2018-11-137-0/+671 * | Use '>=Constantinople' instead of '>Byzantium' to be a bit more readable that...Adrian Sutton2018-11-133-25/+7 * | Add more dynamic argument test cases to cover non-existent accounts, precompi...Adrian Sutton2018-11-131-26/+102 * | Add test case for a contract executing EXTCODEHASH of the account being creat...Adrian Sutton2018-11-121-0/+74 * | Add test case for a contract executing EXTCODEHASH with a dynamic argument.Adrian Sutton2018-11-121-0/+93 * | Add test case for a contract executing EXTCODEHASH on itself.Adrian Sutton2018-11-121-0/+86 * | Merge pull request #538 from ajsutton/memory-write-testswinsvega2018-11-098-0/+783 |\ \ | * | Add blockchain version of new tests.Adrian Sutton2018-11-094-0/+387 | * | Revert "Add blockchain version of stPreCompiledContracts2 tests." (to make re...Adrian Sutton2018-11-093-375/+0 | * | Add comment to new tests explaining what they're covering.Adrian Sutton2018-11-094-4/+16 | * | Add blockchain version of stCodeCopy tests.Adrian Sutton2018-11-061-0/+132 | * | Add blockchain version of stPreCompiledContracts2 tests.Adrian Sutton2018-11-063-0/+375 | * | Add tests to cover cases where data is copied to a memory range longer than t...Adrian Sutton2018-11-034-0/+252 | |/ * | Merge pull request #484 from ethereum/extcodehashwinsvega2018-11-0911-0/+1459 |\ \ | |/ |/| | * fill initial stExtCodeHash testsextcodehashDimitry2018-11-097-0/+1015 | * stExtCodeHash WIPDimitry2018-10-114-0/+444 * | InitCollision testDimitry2018-10-254-0/+402 * | sstore collision overwrite sstoreDimitry2018-10-2518-0/+1759 * | fill as blockchain testsDimitry2018-10-18340-239/+31036 * | sstore xxx testsDimitry2018-10-1817-275/+2701 * | fill as blockchainDimitry2018-10-17109-86/+10025 * | more test scenarios around test casesDimitry2018-10-1714-82/+1614 * | fill as blockchain testsDimitry2018-10-1610-10/+915 * | sstore refund bugDimitry2018-10-151-0/+68 * | more sstore testsDimitry2018-10-154-0/+363 * | update tests without EIP210Dimitry2018-10-1297-598/+100 * | remove artifact testsDimitry2018-10-1114-1153/+0 * | refill wallet testsDimitry2018-10-112-2/+2 |/ * refill stCreate2 with new gasPriceDimitry2018-10-052-4/+4 * fix yml testsDimitry2018-10-035-10/+10 * blockchain test source updatesDimitry2018-10-02246-208/+5535 * refill state tests as blockchain testsDimitry2018-09-264828-7861/+12680 * correct Constantinople expect section in state testsDimitry2018-09-25